API Documentation
⌘K
API Key
Get free key GET
/api/1/ecb/exchange-rates/{currency}ECB exchange rate history
Historical EUR reference rate for a single currency (date + rate).
Parameters
4fromstringStart date (YYYY-MM-DD)
tostringEnd date (YYYY-MM-DD)
limitnumberMax rows (default 365, max 10000)
currencystringrequiredISO currency code (e.g. USD, GBP, JPY)
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/ecb/exchange-rates/USD?from=2025-01-01&to=2025-12-31&limit=365' \
-H 'Accept: application/json'200 Response
{
"data": {
"date": "2024-12-31T00:00:00.000Z",
"rate": 1.085
}
}