← 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

{
  "base": "EUR",
  "date": "2026-09-02",
  "rankings": [
    {
      "change_pct": 0.986072989732642,
      "currency": "NZD",
      "direction": "up",
      "rank": 1,
      "rate": 1.9868
    },
    {
      "change_pct": 0.40631561724523463,
      "currency": "HUF",
      "direction": "up",
      "rank": 2,
      "rate": 368.2
    },
    {
      "change_pct": 0.38688200098969816,
      "currency": "SEK",
      "direction": "up",
      "rank": 3,
      "rate": 11.1575
    },
    {
      "change_pct": 0.36063884595569295,
      "currency": "ILS",
      "direction": "up",
      "rank": 4,
      "rate": 3.5064
    },
    {
      "change_pct": 0.3193527783691718,
      "currency": "CHF",
      "direction": "up",
      "rank": 5,
      "rate": 0.9424
    },
    {
      "change_pct": 0.25100694647130933,
      "currency": "GBP",
      "direction": "up",
      "rank": 6,
      "rate": 0.8587
    },
    {
      "change_pct": 0.16153081510934394,
      "currency": "CAD",
      "direction": "up",
      "rank": 7,
      "rate": 1.6122
    },
    {
      "change_pct": 0.1324558135684424,
      "currency": "CZK",
      "direction": "up",
      "rank": 8,
      "rate": 24.191
    },
    {
      "change_pct": 0.08292446962891299,
      "currency": "PHP",
      "direction": "up",
      "rank": 9,
      "rate": 72.415
    },
    {
      "change_pct": 0.04485454312443932,
      "currency": "MYR",
      "direction": "up",
      "rank": 10,
      "rate": 4.6839
    },
    {
      "change_pct": 0.0026756568737625087,
      "currency": "DKK",
      "direction": "up",
      "rank": 11,
      "rate": 7.475
    },
    {
      "change_pct": -0.017121007476173265,
      "currency": "RON",
      "direction": "down",
      "rank": 12,
      "rate": 5.2558
    },
    {
      "change_pct": -0.0630922720009723,
      "currency": "TRY",
      "direction": "down",
      "rank": 13,
      "rate": 55.9145
    },
    {
      "change_pct": -0.07860170742899722,
      "currency": "INR",
      "direction": "down",
      "rank": 14,
      "rate": 109.962
    },
    {
      "change_pct": -0.08362952122099102,
      "currency": "HKD",
      "direction": "down",
      "rank": 15,
      "rate": 9.0801
    },
    {
      "change_pct": -0.08781254332855756,
      "currency": "NOK",
      "direction": "down",
      "rank": 16,
      "rate": 10.809
    },
    {
      "change_pct": -0.10353753235547886,
      "currency": "USD",
      "direction": "down",
      "rank": 17,
      "rate": 1.1578
    },
    {
      "change_pct": -0.10403978887535525,
      "currency": "MXN",
      "direction": "down",
      "rank": 18,
      "rate": 19.6835
    },
    {
      "change_pct": -0.11082123150093505,
      "currency": "PLN",
      "direction": "down",
      "rank": 19,
      "rate": 4.3265
    },
    {
      "change_pct": -0.11423290677824698,
      "currency": "CNY",
      "direction": "down",
      "rank": 20,
      "rate": 7.7822
    },
    {
      "change_pct": -0.1219594823497527,
      "currency": "SGD",
      "direction": "down",
      "rank": 21,
      "rate": 1.4741
    },
    {
      "change_pct": -0.14204545454545456,
      "currency": "ISK",
      "direction": "down",
      "rank": 22,
      "rate": 140.6
    },
    {
      "change_pct": -0.19100431300061615,
      "currency": "AUD",
      "direction": "down",
      "rank": 23,
      "rate": 1.6199
    },
    {
      "change_pct": -0.2230637547336204,
      "currency": "THB",
      "direction": "down",
      "rank": 24,
      "rate": 38.468
    },
    {
      "change_pct": -0.2670898871979193,
      "currency": "IDR",
      "direction": "down",
      "rank": 25,
      "rate": 20511.18
    },
    {
      "change_pct": -0.4579001239023865,
      "currency": "JPY",
      "direction": "down",
      "rank": 26,
      "rate": 184.78
    },
    {
      "change_pct": -0.48332140606474905,
      "currency": "ZAR",
      "direction": "down",
      "rank": 27,
      "rate": 18.6341
    },
    {
      "change_pct": -0.9791798740875111,
      "currency": "KRW",
      "direction": "down",
      "rank": 28,
      "rate": 1577.57
    },
    {
      "change_pct": -1.0289602522612231,
      "currency": "BRL",
      "direction": "down",
      "rank": 29,
      "rate": 5.9635
    }
  ],
  "success": true
}

Example Response

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