← Finance & Currency

Cross-Rate Matrix

GET /matrix

Generate a full NxN cross-rate table for any selection of currencies. Every currency is shown against every other currency in a single response, like the exchange rate boards at airports. Useful for forex comparison tables, travel apps showing multiple currency pairs, and financial dashboards that need to display all possible combinations at once.

Parameters

currencies required

Comma-separated codes (e.g. USD,EUR,GBP,NOK)

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,EUR,GBP,NOK"
Major world currencies cross-rates
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,EUR,GBP,JPY"
Nordic currencies cross-rates
curl "https://nordapi.ee/api/v1/matrix?currencies=NOK,SEK,DKK,EUR"
Travel currencies for Asia trip
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,JPY,CNY,THB,INR"

Live Response

{
  "currencies": [
    "USD",
    "EUR",
    "GBP",
    "NOK"
  ],
  "date": "2026-04-05",
  "matrix": {
    "EUR": {
      "GBP": 0.87253,
      "NOK": 11.2285,
      "USD": 1.1525
    },
    "GBP": {
      "EUR": 1.1460923979691242,
      "NOK": 12.868898490596312,
      "USD": 1.3208714886594157
    },
    "NOK": {
      "EUR": 0.08905909070668389,
      "GBP": 0.07770672841430289,
      "USD": 0.10264060203945317
    },
    "USD": {
      "EUR": 0.8676789587852495,
      "GBP": 0.7570759219088937,
      "NOK": 9.742733188720173
    }
  },
  "success": true
}

Example Response

{"success":true,"matrix":{"USD":{"EUR":0.865,"GBP":0.748,"NOK":9.54},"EUR":{"USD":1.155}}}