← Finanzen & Währung

Kreuzkurs-Matrix

GET /matrix

Generieren Sie eine full NxN cross-rate table for any selection of currencies. Jeder currency is shown against every other currency in a single response, like the Wechselkurs boards at airports. Nützlich für forex comparison tables, travel apps showing multiple currency pairs, und financial dashboards that need to display all possible combinations at once.

Parameter

currencies erforderlich

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

Beispielanfragen

Grundlegende Verwendung
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-Antwort

{
  "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
}

Beispielantwort

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