Forex
Convert between currencies
Convert between currencies using ECB reference rates.
Both from and to must be EUR or one of the ~30 currencies in the ECB rates. The applied rate is an ECB daily reference rate, not a tradable market rate.
get/api/v1/forex/convert
Query parameters
amountnumber required
Amount to convert (positive number).
Amount to convert (positive number).
fromstring required
Source currency (3-letter ISO 4217 code).
Source currency (3-letter ISO 4217 code).
tostring required
Target currency (3-letter ISO 4217 code).
Target currency (3-letter ISO 4217 code).
Response
Converted amount, applied rate, and reference date.
Example response
{
"data": {
"from_currency": "USD",
"to_currency": "EUR",
"amount": 100,
"result": 91.97,
"rate": 0.9197,
"date": "2026-03-13"
},
"meta": {
"endpoint": "/api/v1/fred/us/cpi",
"data_time": "2026-04-16T14:30:00Z",
"response_time": "2026-04-16T14:30:12Z",
"provider": "Sugra API v1.0.1",
"source": "sugra_crypto",
"attribution": "Short interest and Reg SHO daily short volume data is owned by and sourced from FINRA (Financial Industry Regulatory Authority).",
"fallback_chain": [
"sugra_crypto",
"sugra_finance"
]
}
}