GET /range
Find the minimum, maximum, and average exchange rate for any currency pair over a custom date range. Returns the exact dates when the high and low occurred, making it easy to identify the best and worst conversion moments. Useful for negotiating contract rates, analyzing seasonal currency patterns, and providing users with context about current rates relative to recent history.
base
required
Base currency
target
required
Target currency
start_date
required
Start date
end_date
required
End date
| Name | Required | Default | Description |
|---|---|---|---|
base |
Yes | - | Base currency |
target |
Yes | - | Target currency |
start_date |
Yes | - | Start date |
end_date |
Yes | - | End date |
curl "https://nordapi.ee/api/v1/range?base=EUR&target=USD&start_date=2026-05-19&end_date=2026-05-24"
curl "https://nordapi.ee/api/v1/range?base=EUR&target=USD&start_date=2026-05-17&end_date=2026-05-24"
curl "https://nordapi.ee/api/v1/range?base=GBP&target=NOK&start_date=2026-04-15&end_date=2026-05-15"
curl "https://nordapi.ee/api/v1/range?base=USD&target=JPY&start_date=2026-04-15&end_date=2026-05-24"
HTTP 404: {
"error": "No rates available for this period",
"message": "Exchange rates are not available for the requested time period.",
"success": false
}
{"success":true,"lowest":{"rate":1.1489,"date":"2026-05-19"},"highest":{"rate":1.1555,"date":"2026-05-20"},"average":1.1522}