← Finanzen & Währung

Krypto-Preise

GET /crypto/prices

Erhalten Sie current prices, market capitalization, 24-hour trading volume, und 24h/7d percentage changes for the top 250 Kryptowährungen by market cap. Daten von CoinGecko und updated frequently. Konfigurierbar limit parameter lets you fetch just the top 5 oder up to 250 coins. Unverzichtbar für crypto portfolio trackers, market overview dashboards, und price alert systems.

Parameter

limit optional Standard: 100

Number of coins (max 250)

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/crypto/prices?limit=5
Top 5 cryptocurrencies
curl "https://nordapi.ee/api/v1/crypto/prices?limit=5"
Top 100 (default)
curl "https://nordapi.ee/api/v1/crypto/prices"
Top 250 cryptocurrencies
curl "https://nordapi.ee/api/v1/crypto/prices?limit=250"

Live-Antwort

{
  "count": 5,
  "data": [
    {
      "change_24h_pct": -0.0189,
      "change_7d_pct": 1.4613,
      "circulating_supply": 20011846.0,
      "id": "bitcoin",
      "last_updated": "2026-04-05T19:39:54Z",
      "market_cap_usd": 1348253732185.0,
      "name": "Bitcoin",
      "price_eur": 58433.8395612,
      "price_usd": 67345.0,
      "symbol": "BTC",
      "total_supply": 20011868.0,
      "volume_24h_usd": 21484548496.0
    },
    {
      "change_24h_pct": -0.3439,
      "change_7d_pct": 3.279,
      "circulating_supply": 120691237.98,
      "id": "ethereum",
      "last_updated": "2026-04-05T19:39:56Z",
      "market_cap_usd": 248834903221.0,
      "name": "Ethereum",
      "price_eur": 1788.57267062,
      "price_usd": 2061.33,
      "symbol": "ETH",
      "total_supply": 120691237.98,
      "volume_24h_usd": 8273418541.0
    },
    {
      "change_24h_pct": -0.0174,
      "change_7d_pct": 0.0561,
      "circulating_supply": 184151480312.46,
      "id": "tether",
      "last_updated": "2026-04-05T19:39:58Z",
      "market_cap_usd": 184108249797.0,
      "name": "Tether",
      "price_eur": 0.86747506,
      "price_usd": 0.999765,
      "symbol": "USDT",
      "total_supply": 189618420160.66,
      "volume_24h_usd": 33979892293.0
    },
    {
      "change_24h_pct": -0.2508,
      "change_7d_pct": -2.7204,
      "circulating_supply": 136356865.48,
      "id": "binancecoin",
      "last_updated": "2026-04-05T19:39:54Z",
      "market_cap_usd": 80825232648.0,
      "name": "BNB",
      "price_eur": 514.16919812,
      "price_usd": 592.58,
      "symbol": "BNB",
      "total_supply": 136356864.77,
      "volume_24h_usd": 519001459.0
    },
    {
      "change_24h_pct": -1.083,
      "change_7d_pct": -1.489,
      "circulating_supply": 61405531717.0,
      "id": "ripple",
      "last_updated": "2026-04-05T19:39:58Z",
      "market_cap_usd": 80037089495.0,
      "name": "XRP",
      "price_eur": 1.12798265,
      "price_usd": 1.3,
      "symbol": "XRP",
      "total_supply": 99985687636.0,
      "volume_24h_usd": 1284359875.0
    }
  ],
  "success": true
}

Beispielantwort

{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}