Currency conversion API for AI agents — convert an amount between currencies usi
Currency conversion API for AI agents — convert an amount between currencies using official ECB reference-rate data; one-shot x402 call with optional volume credits.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
196 msmedian answer time
$0.001listed price per call
$0.001price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://squeezeos-api.onrender.com/api/fx/convert
| Category | Market data |
|---|---|
| Provider host | squeezeos-api.onrender.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 7 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.001 | 196 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"amount": "100",
"from": "USD",
"to": "EUR"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"const": "GET",
"type": "string"
},
"queryParams": {
"additionalProperties": true,
"properties": {
"amount": {
"description": "Positive decimal amount Search intents: currency conversion api, currency conversion, fx conversion api, fx rates, foreign exchange, ecb rates.",
"type": "string"
},
"from": {
"description": "Three-letter source currency code Search intents: currency conversion api, currency conversion, fx conversion api, fx rates, foreign exchange, ecb rates.",
"type": "string"
},
"to": {
"description": "Three-letter target currency code Search intents: currency conversion api, currency conversion, fx conversion api, fx rates, foreign exchange, ecb rates.",
"type": "string"
}
},
"required": [
"from",
"to",
"amount"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}