← Finanzen & Währung

Krypto-Preise

GET /crypto/prices

Rufen Sie aktuelle Preise, Marktkapitalisierung, 24-Stunden-Handelsvolumen und prozentuale Veränderungen über 24 Stunden/7 Tage für die Top 250 Kryptowährungen nach Marktkapitalisierung ab. Daten von CoinGecko, häufig aktualisiert. Mit dem konfigurierbaren Limit-Parameter können Sie nur die Top 5 oder bis zu 250 Coins abrufen. Unverzichtbar für Krypto-Portfolio-Tracker, Marktübersichts-Dashboards und Preisalarmsysteme.

Sehen Sie es visualisiert

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.6257,
      "change_7d_pct": -4.2582,
      "circulating_supply": 20032734.0,
      "id": "bitcoin",
      "last_updated": "2026-05-22T09:39:59Z",
      "market_cap_usd": 1545193776418.0,
      "name": "Bitcoin",
      "price_eur": null,
      "price_usd": 77186.0,
      "symbol": "BTC",
      "total_supply": 20032734.0,
      "volume_24h_usd": 23575980772.0
    },
    {
      "change_24h_pct": -0.4302,
      "change_7d_pct": -6.0485,
      "circulating_supply": 120685588.47,
      "id": "ethereum",
      "last_updated": "2026-05-22T09:39:59Z",
      "market_cap_usd": 255623663785.0,
      "name": "Ethereum",
      "price_eur": null,
      "price_usd": 2119.84,
      "symbol": "ETH",
      "total_supply": 120685588.47,
      "volume_24h_usd": 12558134502.0
    },
    {
      "change_24h_pct": -0.0198,
      "change_7d_pct": -0.0851,
      "circulating_supply": 189852859771.04,
      "id": "tether",
      "last_updated": "2026-05-22T09:39:59Z",
      "market_cap_usd": 189630443151.0,
      "name": "Tether",
      "price_eur": null,
      "price_usd": 0.99883,
      "symbol": "USDT",
      "total_supply": 195319800967.5,
      "volume_24h_usd": 50639202723.0
    },
    {
      "change_24h_pct": 0.5324,
      "change_7d_pct": -4.4047,
      "circulating_supply": 134785059.84,
      "id": "binancecoin",
      "last_updated": "2026-05-22T09:39:59Z",
      "market_cap_usd": 88392357626.0,
      "name": "BNB",
      "price_eur": null,
      "price_usd": 656.23,
      "symbol": "BNB",
      "total_supply": 134785040.92,
      "volume_24h_usd": 757935838.0
    },
    {
      "change_24h_pct": -1.1494,
      "change_7d_pct": -7.51,
      "circulating_supply": 61829045420.0,
      "id": "ripple",
      "last_updated": "2026-05-22T09:39:59Z",
      "market_cap_usd": 84058364158.0,
      "name": "XRP",
      "price_eur": null,
      "price_usd": 1.36,
      "symbol": "XRP",
      "total_supply": 99985666473.0,
      "volume_24h_usd": 1660051464.0
    }
  ],
  "success": true
}

Beispielantwort

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