← Finanzen & Währung

Krypto-zu-Fiat-Umrechnung

GET /crypto/convert

Konvertieren Sie jeden Kryptowährung amount into any of the 30 supported fiat currencies using live CoinGecko prices und ECB Wechselkurse. Liefert die conversion rate und calculated result. Ideal für crypto portfolio apps that need to show holdings in local currency, payment processors converting crypto to fiat, und trading tools that need quick fiat-equivalent calculations.

Parameter

coin erforderlich

Coin ID

to erforderlich

Target fiat currency

amount optional Standard: 1

Amount of crypto

Beispielanfragen

Grundlegende Verwendung
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-Antwort

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

Beispielantwort

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