Fiat
fiatISO 4217 currencies quoted against any base, with names and symbols available in several locales.
Currency Rates API · v1
Fiat and digital assets share the same request shape, the same authentication and the same error contract. Every quote carries the timestamp it was captured, so you can store the rate you actually charged.
Captured Aug 14, 2026, 4:00 PM.
curl "https://api.currencyrates-api.com/v1/convert?from=USD&to=BRL&amount=100" \
-H "Authorization: Bearer fx_live_xxxxxxxxxxxxxxxxxx"Two markets
You do not need a second integration for crypto. The paths differ by a prefix; the fields do not.
ISO 4217 currencies quoted against any base, with names and symbols available in several locales.
Digital assets on the same response shape, including decimal exponents so you never truncate a balance.
Built for money
Financial data has a different bar than reference data: you need to prove what rate applied and when.
{
"from": "USD",
"to": "BRL",
"amount": 100,
"rate": 5.4123,
"result": 541.23,
"date": "2026-08-13",
"updated_at": "2026-08-13T18:40:02Z"
}X-RateLimit-Limit: 600
X-RateLimit-Remaining: 594
X-Monthly-Limit: 100000
X-Monthly-Usage: 12480
X-Monthly-Remaining: 87520The free plan starts at 5,000 requests a month with no payment method, and both markets are included from the first key.