GET /convert/batch
Convert a single amount från one basvaluta till flera målvalutor in a single API call. Returnerar the converted amount and växelkurs för varje målvaluta. Far more efficient than making individual conversion förfrågningar när you behöver to visa priser in flera valutor simultaneously, som t.ex. on international pricing sidor or multi-currency shopping- carts.
from
obligatorisk
Source currency
amount
obligatorisk
Amount
to
obligatorisk
Comma-separated target currencies
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
from |
Ja | - | Source currency |
amount |
Ja | - | Amount |
to |
Ja | - | Comma-separated target currencies |
curl "https://nordapi.ee/api/v1/convert/batch?from=USD&amount=100&to=EUR,GBP,NOK"
curl "https://nordapi.ee/api/v1/convert/batch?from=USD&amount=100&to=EUR,GBP,NOK"
curl "https://nordapi.ee/api/v1/convert/batch?from=EUR&amount=250&to=JPY,CNY,INR"
curl "https://nordapi.ee/api/v1/convert/batch?from=USD&amount=5000&to=NOK,SEK,DKK"
{
"amount": 100.0,
"from": "USD",
"results": {
"EUR": {
"amount": 86.767896,
"rate": 0.86767896
},
"GBP": {
"amount": 75.707592,
"rate": 0.75707592
},
"NOK": {
"amount": 974.273319,
"rate": 9.74273319
}
},
"success": true
}
{"success":true,"from":"USD","amount":100.0,"results":{"EUR":{"rate":0.865,"amount":86.54},"GBP":{"rate":0.748,"amount":74.81},"NOK":{"rate":9.545,"amount":954.48}}}