GET /timeseries
Get daily exchange rates for every day within a specified date range. Returns a map of dates to rate objects, perfect for plotting exchange rate charts and trend lines, performing time-series analysis, or calculating moving averages. Supports filtering by base currency and target symbols to keep response sizes manageable over longer date ranges.
start_date
required
Start date
end_date
required
End date
base
optional
Base currency
symbols
optional
Target currencies
| Name | Required | Default | Description |
|---|---|---|---|
start_date |
Yes | - | Start date |
end_date |
Yes | - | End date |
base |
No | - | Base currency |
symbols |
No | - | Target currencies |
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-05-01&end_date=2026-05-15&base=USD&symbols=EUR"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-05-01&end_date=2026-05-15&base=USD&symbols=EUR"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-04-15&end_date=2026-05-15&base=NOK&symbols=SEK,DKK"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-05-17&end_date=2026-05-24&base=GBP"
{
"base": "USD",
"end_date": "2026-05-15",
"rates": {
"2026-05-01": {
"EUR": 0.85455478
},
"2026-05-02": {
"EUR": 0.85455478
},
"2026-05-03": {
"EUR": 0.85455478
},
"2026-05-04": {
"EUR": 0.85470085
},
"2026-05-05": {
"EUR": 0.8557248
},
"2026-05-06": {
"EUR": 0.85019554
},
"2026-05-07": {
"EUR": 0.84961767
},
"2026-05-08": {
"EUR": 0.85026783
},
"2026-05-09": {
"EUR": 0.85026783
},
"2026-05-10": {
"EUR": 0.85026783
},
"2026-05-11": {
"EUR": 0.84997875
},
"2026-05-12": {
"EUR": 0.85193389
},
"2026-05-13": {
"EUR": 0.85360649
},
"2026-05-14": {
"EUR": 0.85455478
},
"2026-05-15": {
"EUR": 0.85999312
}
},
"start_date": "2026-05-01",
"success": true
}
{"success":true,"base":"USD","rates":{"2026-05-01":{"EUR":0.92},"2026-05-02":{"EUR":0.918}}}