GET /convert
Teisendage a specific monetary amount from one currency to another using the latest vahetuskursid. Toetab an optional margin parameter for adding business markup (nt 2% fee on top of the market rate), and an optional date parameter for historical conversions. Tagastab converted amount, the rate used, and query details. Sobib e-commerce checkout flows, invoicing systems, and travel budget tools.
from
kohustuslik
Source currency
to
kohustuslik
Target currency
amount
kohustuslik
Amount to convert
margin
valikuline
Business markup percentage
date
valikuline
Historical date (YYYY-MM-DD)
| Nimi | Kohustuslik | Vaikeväärtus | Kirjeldus |
|---|---|---|---|
from |
Jah | - | Source currency |
to |
Jah | - | Target currency |
amount |
Jah | - | Amount to convert |
margin |
Ei | - | Business markup percentage |
date |
Ei | - | Historical date (YYYY-MM-DD) |
curl "https://nordapi.ee/api/v1/convert?from=USD&to=EUR&amount=100"
curl "https://nordapi.ee/api/v1/convert?from=USD&to=EUR&amount=100"
curl "https://nordapi.ee/api/v1/convert?from=USD&to=EUR&amount=100&margin=2.5"
curl "https://nordapi.ee/api/v1/convert?from=GBP&to=NOK&amount=500&date=2026-01-15"
curl "https://nordapi.ee/api/v1/convert?from=JPY&to=NOK&amount=1000000"
{
"query": {
"amount": 100.0,
"from": "USD",
"to": "EUR"
},
"rate": 0.86767896,
"result": 86.767896,
"success": true
}
{"success":true,"query":{"from":"USD","to":"EUR","amount":100.0},"result":86.54,"rate":0.8654}