GET /rankings
Rank all 30 supported currencies by their daily performance against a chosen base currency. Each entry includes the currency code, current rate, percentage change, and direction (up/down). Ideal for building currency leaderboards, market overview screens, and identifying the day's strongest and weakest currencies at a glance.
base
optional
default: EUR
Base currency
| Name | Required | Default | Description |
|---|---|---|---|
base |
No | EUR | Base currency |
curl "https://nordapi.ee/api/v1/rankings?base=EUR"
curl "https://nordapi.ee/api/v1/rankings?base=EUR"
curl "https://nordapi.ee/api/v1/rankings?base=USD"
curl "https://nordapi.ee/api/v1/rankings?base=NOK"
HTTP 404: {
"error": "No exchange rates available",
"message": "No rates found for the specified base currency. Please try again later or use a different base currency.",
"success": false
}
{"success":true,"rankings":[{"rank":1,"currency":"INR","rate":108.17,"change_pct":0.97,"direction":"up"}]}