← Finance & Currency

Crypto to Fiat Conversion

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.

Parameters

coin required

Coin ID

to required

Target fiat currency

amount optional default: 1

Amount of crypto

Example Requests

Basic usage
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"

Live Response

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

Example Response

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