v1
latestOpenAPI 3.1.02026-08-04103211436.0 KBList foreign exchange rates
Returns the daily foreign exchange rates recorded in Embat, most recent first, recalculated to be expressed against baseCurrency. Results are paginated: use limit to control page size and pass the returned nextPageToken to fetch the next page. startDate/endDate filter by rate date: startDate is inclusive and endDate is exclusive. If only one of the two is given, the range is open-ended on the other side.
Query parameters
Currency all returned rates are expressed against.
Only return exchange rates dated on or after this date (inclusive).
Only return exchange rates dated on or after this date (inclusive).
Only return exchange rates dated before this date (exclusive).
Only return exchange rates dated before this date (exclusive).
Maximum number of objects to return in the response. Default 500, maximum 2000.
Maximum number of objects to return in the response. Default 500, maximum 2000.
Token to fetch the next page of results, taken from the nextPageToken returned by the previous request with the same filters. Omit it to fetch the first page. An invalid or malformed token is rejected with 404.
Token to fetch the next page of results, taken from the nextPageToken returned by the previous request with the same filters. Omit it to fetch the first page. An invalid or malformed token is rejected with 404.
Response
Successful Response
Example response
{
"data": [
{
"id": "fx-2024-01-15",
"date": "2024-01-15T00:00:00Z",
"rates": {
"EUR": 1,
"USD": 1.086
}
}
]
}