← Finance & Currency

Currency Rankings

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.

Parameters

base optional default: EUR

Base currency

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/rankings?base=EUR"
Rankings against EUR (default)
curl "https://nordapi.ee/api/v1/rankings?base=EUR"
Rankings against USD
curl "https://nordapi.ee/api/v1/rankings?base=USD"
Rankings against NOK
curl "https://nordapi.ee/api/v1/rankings?base=NOK"

Live Response

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
}

Example Response

{"success":true,"rankings":[{"rank":1,"currency":"INR","rate":108.17,"change_pct":0.97,"direction":"up"}]}