← Finanzen & Währung

Historisches Archiv (Datum)

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.

Parameter

date erforderlich

Date in URL (YYYY-MM-DD)

base optional

Base currency

symbols optional

Target currencies

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/history/date/2008-09-15?base=USD&symbols=EUR,GBP"
Lehman Brothers collapse day rates
curl "https://nordapi.ee/api/v1/history/date/2008-09-15?base=USD&symbols=EUR,GBP"
Brexit vote day rates
curl "https://nordapi.ee/api/v1/history/date/2016-06-24?base=GBP"
COVID crash rates in Nordic currencies
curl "https://nordapi.ee/api/v1/history/date/2020-03-12?base=EUR&symbols=NOK,SEK,DKK"

Live-Antwort

{
  "data": {
    "base": "USD",
    "date": "2008-09-15",
    "rates": {
      "EUR": 0.70666,
      "GBP": 0.56106
    }
  },
  "success": true
}

Beispielantwort

{"success":true,"data":{"base":"USD","date":"2008-09-15","rates":{"EUR":0.703,"GBP":0.564}}}