GET /crypto/convert
Convertissez n'importe quel montant de cryptomonnaie en tout of le 30 supported monnaies fiduciaires en utilisant live CoinGecko prices et ECB taux de change. Renvoie le conversion rate et calculated result. Idéal pour les crypto portfolio apps qui need to show holdings in local currency, payment processors converting crypto to fiat, et trading tools qui need quick fiat-equivalent calculations.
coin
requis
Coin ID
to
requis
Target fiat currency
amount
optionnel
par défaut: 1
Amount of crypto
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
coin |
Oui | - | Coin ID |
to |
Oui | - | Target fiat currency |
amount |
Non | 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": 656962.24173489,
"result": 656962.24173489,
"success": true,
"symbol": "BTC",
"target_currency": "NOK"
}
{"success":true,"coin":"bitcoin","symbol":"BTC","target_currency":"NOK","rate":673174.65,"result":673174.65}