GET /history/date/:date
Zugriff auf das deep historical Wechselkurs archive with data going back to January 1999, sourced from the European Central Bank. Abrufen von rates for any single date in the archive by providing it in the URL path. Unterstützt base currency und symbol filtering. Ideal für academic research, long-term trend analysis, historical financial reporting, und apps that need Wechselkurse from specific past events.
date
erforderlich
Date in URL (YYYY-MM-DD)
base
optional
Base currency
symbols
optional
Target currencies
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
date |
Ja | - | Date in URL (YYYY-MM-DD) |
base |
Nein | - | Base currency |
symbols |
Nein | - | 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}}}