← Finanzas y divisas

Conversión de criptomoneda a fiat

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.

Parametros

coin requerido

Coin ID

to requerido

Target fiat currency

amount opcional predeterminado: 1

Amount of crypto

Ejemplos de solicitudes

Uso basico
curl "https://nordapi.ee/api/v1/crypto/convert?coin=bitcoin&to=NOK&amount=1"
1 Bitcoin to Norwegian Krone
curl "https://nordapi.ee/api/v1/crypto/convert?coin=bitcoin&to=NOK&amount=1"
10 Ethereum to EUR
curl "https://nordapi.ee/api/v1/crypto/convert?coin=ethereum&to=EUR&amount=10"
1000 Solana to USD
curl "https://nordapi.ee/api/v1/crypto/convert?coin=solana&to=USD&amount=1000"

Respuesta en vivo

{
  "amount": 1.0,
  "coin": "bitcoin",
  "coin_name": "Bitcoin",
  "rate": 657118.12546593,
  "result": 657118.12546593,
  "success": true,
  "symbol": "BTC",
  "target_currency": "NOK"
}

Ejemplo de respuesta

{"success":true,"coin":"bitcoin","symbol":"BTC","target_currency":"NOK","rate":673174.65,"result":673174.65}