← Finance et devises

Classement des devises

GET /rankings

Classez les 30 devises prises en charge by leur daily performance against a chosen devise de base. Each entry comprend le currency code, current rate, percentage change, et direction (up/down). Idéal pour les building currency leaderboards, market overview screens, et identifying le day's strongest et weakest currencies en un coup d'œil.

Paramètres

base optionnel par défaut: EUR

Base currency

Exemples de requêtes

Utilisation de base
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"

Réponse en direct

{
  "base": "EUR",
  "date": "2026-04-05",
  "rankings": [
    {
      "change_pct": 0.0,
      "currency": "AUD",
      "direction": "unchanged",
      "rank": 1,
      "rate": 1.6771
    },
    {
      "change_pct": 0.0,
      "currency": "BRL",
      "direction": "unchanged",
      "rank": 2,
      "rate": 5.972
    },
    {
      "change_pct": 0.0,
      "currency": "CAD",
      "direction": "unchanged",
      "rank": 3,
      "rate": 1.603
    },
    {
      "change_pct": 0.0,
      "currency": "CHF",
      "direction": "unchanged",
      "rank": 4,
      "rate": 0.9213
    },
    {
      "change_pct": 0.0,
      "currency": "CNY",
      "direction": "unchanged",
      "rank": 5,
      "rate": 7.9495
    },
    {
      "change_pct": 0.0,
      "currency": "CZK",
      "direction": "unchanged",
      "rank": 6,
      "rate": 24.54
    },
    {
      "change_pct": 0.0,
      "currency": "DKK",
      "direction": "unchanged",
      "rank": 7,
      "rate": 7.4722
    },
    {
      "change_pct": 0.0,
      "currency": "GBP",
      "direction": "unchanged",
      "rank": 8,
      "rate": 0.87253
    },
    {
      "change_pct": 0.0,
      "currency": "HKD",
      "direction": "unchanged",
      "rank": 9,
      "rate": 9.0325
    },
    {
      "change_pct": 0.0,
      "currency": "HUF",
      "direction": "unchanged",
      "rank": 10,
      "rate": 383.93
    },
    {
      "change_pct": 0.0,
      "currency": "IDR",
      "direction": "unchanged",
      "rank": 11,
      "rate": 19604.77
    },
    {
      "change_pct": 0.0,
      "currency": "ILS",
      "direction": "unchanged",
      "rank": 12,
      "rate": 3.6342
    },
    {
      "change_pct": 0.0,
      "currency": "INR",
      "direction": "unchanged",
      "rank": 13,
      "rate": 107.3
    },
    {
      "change_pct": 0.0,
      "currency": "ISK",
      "direction": "unchanged",
      "rank": 14,
      "rate": 144.4
    },
    {
      "change_pct": 0.0,
      "currency": "JPY",
      "direction": "unchanged",
      "rank": 15,
      "rate": 183.94
    },
    {
      "change_pct": 0.0,
      "currency": "KRW",
      "direction": "unchanged",
      "rank": 16,
      "rate": 1747.94
    },
    {
      "change_pct": 0.0,
      "currency": "MXN",
      "direction": "unchanged",
      "rank": 17,
      "rate": 20.6749
    },
    {
      "change_pct": 0.0,
      "currency": "MYR",
      "direction": "unchanged",
      "rank": 18,
      "rate": 4.6549
    },
    {
      "change_pct": 0.0,
      "currency": "NOK",
      "direction": "unchanged",
      "rank": 19,
      "rate": 11.2285
    },
    {
      "change_pct": 0.0,
      "currency": "NZD",
      "direction": "unchanged",
      "rank": 20,
      "rate": 2.0191
    },
    {
      "change_pct": 0.0,
      "currency": "PHP",
      "direction": "unchanged",
      "rank": 21,
      "rate": 69.86
    },
    {
      "change_pct": 0.0,
      "currency": "PLN",
      "direction": "unchanged",
      "rank": 22,
      "rate": 4.2855
    },
    {
      "change_pct": 0.0,
      "currency": "RON",
      "direction": "unchanged",
      "rank": 23,
      "rate": 5.0983
    },
    {
      "change_pct": 0.0,
      "currency": "SEK",
      "direction": "unchanged",
      "rank": 24,
      "rate": 10.948
    },
    {
      "change_pct": 0.0,
      "currency": "SGD",
      "direction": "unchanged",
      "rank": 25,
      "rate": 1.4834
    },
    {
      "change_pct": 0.0,
      "currency": "THB",
      "direction": "unchanged",
      "rank": 26,
      "rate": 37.762
    },
    {
      "change_pct": 0.0,
      "currency": "TRY",
      "direction": "unchanged",
      "rank": 27,
      "rate": 51.2795
    },
    {
      "change_pct": 0.0,
      "currency": "USD",
      "direction": "unchanged",
      "rank": 28,
      "rate": 1.1525
    },
    {
      "change_pct": 0.0,
      "currency": "ZAR",
      "direction": "unchanged",
      "rank": 29,
      "rate": 19.6061
    }
  ],
  "success": true
}

Exemple de réponse

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