GET /crypto/convert
Convert any cryptocurrency amount into any of the 30 supported divisas fiat using live CoinGecko prices and ECB tasas de cambio. Returns the conversion rate and calculated result. Ideal para crypto portfolio aplicaciones that need to show holdings in local currency, payment processors convirtiendo crypto to fiat, and trading tools that need quick fiat-equivalent calculations.
coin
requerido
Coin ID
to
requerido
Target fiat currency
amount
opcional
predeterminado: 1
Amount of crypto
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
coin |
Si | - | Coin ID |
to |
Si | - | 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": 657118.12546593,
"result": 657118.12546593,
"success": true,
"symbol": "BTC",
"target_currency": "NOK"
}
{"success":true,"coin":"bitcoin","symbol":"BTC","target_currency":"NOK","rate":673174.65,"result":673174.65}