GET /history/date/:date
Access the deep historical exchange rate archive with data going back to January 1999, sourced from the European Central Bank. Retrieve rates for any single date in the archive by providing it in the URL path. Supports base currency and symbol filtering. Ideal for academic research, long-term trend analysis, historical financial reporting, and apps that need exchange rates from specific past events.
date
required
Date in URL (YYYY-MM-DD)
base
optional
Base currency
symbols
optional
Target currencies
| Name | Required | Default | Description |
|---|---|---|---|
date |
Yes | - | Date in URL (YYYY-MM-DD) |
base |
No | - | Base currency |
symbols |
No | - | Target currencies |
curl "https://nordapi.ee/api/v1/history/date/2008-09-15?base=USD&symbols=EUR,GBP"
curl "https://nordapi.ee/api/v1/history/date/2008-09-15?base=USD&symbols=EUR,GBP"
curl "https://nordapi.ee/api/v1/history/date/2016-06-24?base=GBP"
curl "https://nordapi.ee/api/v1/history/date/2020-03-12?base=EUR&symbols=NOK,SEK,DKK"
{
"data": {
"base": "USD",
"date": "2008-09-15",
"rates": {
"EUR": 0.70666,
"GBP": 0.56106
}
},
"success": true
}
{"success":true,"data":{"base":"USD","date":"2008-09-15","rates":{"EUR":0.703,"GBP":0.564}}}