API Documentation

GET/api/1/market/fx/{from}/{to}

FX Rate Series

Returns historical exchange rates between two currencies

Parameters

3
rangestring
query

Time range: 1m, 3m, 6m, 1y, 2y, 5y, max

fromstringrequired
path

Base currency (e.g. EUR)

tostringrequired
path

Quote currency (e.g. USD)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/market/fx/EUR/USD?range=1y' \
  -H 'Accept: application/json'
200 Response
{
  "from": "EUR",
  "to": "USD",
  "range": "1y",
  "rates": []
}