RateFlow API provides latest and historical currency exchange rates through a simple RESTful JSON API. Integrate current exchange rate data into your applications with just a few lines of code.
Key features:
All API v1 requests use the following base URL:
https://api.rateflow.com/v1/
{info} All requests must include a valid API key via the
X-API-Keyheader. See Authentication for details.
{warning} Store your API key securely. Never expose it in client-side code, public repositories, or URLs.
Make your first API call to fetch the latest EUR exchange rates:
curl -s -H "X-API-Key: YOUR_API_KEY" "https://api.rateflow.com/v1/rates/latest?base=EUR"
Response:
{
"success": true,
"data": {
"base": "EUR",
"updated_at": "2026-03-29T15:00:00Z",
"rates": {
"USD": 1.0821,
"GBP": 0.8569,
"JPY": 162.45,
"CHF": 0.9612
}
}
}
{info} Successful responses use a consistent
{ "success": true, "data": { ... } }envelope. Errors return"success": falsewith anerrorobject instead.
See the full list of Endpoints and Code Examples for more.