GET /timeseries
Erhalten Sie daily Wechselkurse for every day within a specified date range. Liefert eine map of dates to rate objects, ideal für plotting Wechselkurs charts und trend lines, performing time-series analysis, oder calculating moving averages. Unterstützt filtering by base currency und target symbols to keep response sizes manageable over longer date ranges.
start_date
erforderlich
Start date
end_date
erforderlich
End date
base
optional
Base currency
symbols
optional
Target currencies
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
start_date |
Ja | - | Start date |
end_date |
Ja | - | End date |
base |
Nein | - | Base currency |
symbols |
Nein | - | Target currencies |
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-01&end_date=2026-03-15&base=USD&symbols=EUR"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-01&end_date=2026-03-15&base=USD&symbols=EUR"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-02-01&end_date=2026-02-28&base=NOK&symbols=SEK,DKK"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-17&end_date=2026-03-24&base=GBP"
HTTP 404: {
"error": "No rates available for this period",
"message": "Exchange rates are not available for the requested time period.",
"success": false
}
{"success":true,"base":"USD","rates":{"2026-03-01":{"EUR":0.92},"2026-03-02":{"EUR":0.918}}}