GET /historical/:date
Retrieve exchange rates for any specific past date. Provide a date in YYYY-MM-DD format in the URL path, and optionally filter by base currency and target symbols. Useful for generating historical invoices, auditing past transactions, back-testing trading strategies, and building exchange rate charts. Data sourced from ECB daily reference rates.
date
required
Date in URL (YYYY-MM-DD)
base
optional
default: EUR
Base currency
symbols
optional
Target currencies
| Name | Required | Default | Description |
|---|---|---|---|
date |
Yes | - | Date in URL (YYYY-MM-DD) |
base |
No | EUR | Base currency |
symbols |
No | - | Target currencies |
curl "https://nordapi.ee/api/v1/historical/2026-05-15?base=USD"
curl "https://nordapi.ee/api/v1/historical/2026-05-15?base=USD"
curl "https://nordapi.ee/api/v1/historical/2026-04-15?base=EUR&symbols=NOK,SEK,DKK"
curl "https://nordapi.ee/api/v1/historical/2026-04-15?base=GBP&symbols=USD,EUR"
{
"base": "USD",
"date": "2026-05-15",
"rates": {
"AUD": 1.39877881,
"BRL": 5.03242174,
"CAD": 1.375559,
"CHF": 0.78637771,
"CNY": 6.81062951,
"CZK": 20.92621259,
"DKK": 6.42655659,
"EUR": 0.85999312,
"GBP": 0.74862401,
"HKD": 7.83152735,
"HUF": 309.40832473,
"IDR": 17588.6996904,
"ILS": 2.92199862,
"INR": 95.97007224,
"ISK": 123.49501204,
"JPY": 158.54833161,
"KRW": 1499.62160303,
"MXN": 17.37392501,
"MYR": 3.95098039,
"NOK": 9.32662539,
"NZD": 1.7120743,
"PHP": 61.69418645,
"PLN": 3.65196078,
"RON": 4.48624011,
"SEK": 9.44444444,
"SGD": 1.28001376,
"THB": 32.67027864,
"TRY": 45.54506364,
"ZAR": 16.66142071
},
"success": true
}
{"success":true,"base":"USD","date":"2026-05-15","rates":{"EUR":0.921,"GBP":0.793}}