GET /crypto/convert
Convert any cryptocurrency amount into any of the 30 supported fiat currencies using live CoinGecko prices and ECB exchange rates. Returns the conversion rate and calculated result. Ideal for crypto portfolio apps that need to show holdings in local currency, payment processors converting crypto to fiat, and trading tools that need quick fiat-equivalent calculations.
coin
required
Coin ID
to
required
Target fiat currency
amount
optional
default: 1
Amount of crypto
| Name | Required | Default | Description |
|---|---|---|---|
coin |
Yes | - | Coin ID |
to |
Yes | - | Target fiat currency |
amount |
No | 1 | Amount of crypto |
curl "https://nordapi.ee/api/v1/crypto/convert?coin=bitcoin&to=NOK&amount=1"
curl "https://nordapi.ee/api/v1/crypto/convert?coin=bitcoin&to=NOK&amount=1"
curl "https://nordapi.ee/api/v1/crypto/convert?coin=ethereum&to=EUR&amount=10"
curl "https://nordapi.ee/api/v1/crypto/convert?coin=solana&to=USD&amount=1000"
{
"amount": 1.0,
"coin": "bitcoin",
"coin_name": "Bitcoin",
"rate": 655549.54542234,
"result": 655549.54542234,
"success": true,
"symbol": "BTC",
"target_currency": "NOK"
}
{"success":true,"coin":"bitcoin","symbol":"BTC","target_currency":"NOK","rate":673174.65,"result":673174.65}