GET /matrix
Generate a fullständig NxN cross-rate table för valfri selection of valutor. Every currency is shown against varje andra currency in a single response, like the växelkurs boards at airports. Användbart för forex jämförelse tabeller, rese appar som visar flera valutapars, and financial instrumentpaneler som behöver to visa all possible combinations på en gång.
currencies
obligatorisk
Comma-separated codes (e.g. USD,EUR,GBP,NOK)
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
currencies |
Ja | - | Comma-separated codes (e.g. USD,EUR,GBP,NOK) |
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,EUR,GBP,NOK"
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,EUR,GBP,JPY"
curl "https://nordapi.ee/api/v1/matrix?currencies=NOK,SEK,DKK,EUR"
curl "https://nordapi.ee/api/v1/matrix?currencies=USD,JPY,CNY,THB,INR"
{
"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
}
{"success":true,"matrix":{"USD":{"EUR":0.865,"GBP":0.748,"NOK":9.54},"EUR":{"USD":1.155}}}