← Finance & Currency

Crypto Prices

GET /crypto/prices

Get current prices, market capitalization, 24-hour trading volume, and 24h/7d percentage changes for the top 250 cryptocurrencies by market cap. Data sourced from CoinGecko and updated frequently. Configurable limit parameter lets you fetch just the top 5 or up to 250 coins. Essential for crypto portfolio trackers, market overview dashboards, and price alert systems.

See it visualized

Parameters

limit optional default: 100

Number of coins (max 250)

Example Requests

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

{
  "count": 5,
  "data": [
    {
      "change_24h_pct": -0.3912,
      "change_7d_pct": -4.3735,
      "circulating_supply": 20032653.0,
      "id": "bitcoin",
      "last_updated": "2026-05-22T05:39:59Z",
      "market_cap_usd": 1552992656894.0,
      "name": "Bitcoin",
      "price_eur": null,
      "price_usd": 77510.0,
      "symbol": "BTC",
      "total_supply": 20032678.0,
      "volume_24h_usd": 26228141242.0
    },
    {
      "change_24h_pct": -0.4287,
      "change_7d_pct": -6.3479,
      "circulating_supply": 120685588.47,
      "id": "ethereum",
      "last_updated": "2026-05-22T05:40:00Z",
      "market_cap_usd": 256979199973.0,
      "name": "Ethereum",
      "price_eur": null,
      "price_usd": 2128.83,
      "symbol": "ETH",
      "total_supply": 120685588.47,
      "volume_24h_usd": 12682185204.0
    },
    {
      "change_24h_pct": -0.0051,
      "change_7d_pct": -0.0776,
      "circulating_supply": 189852859771.04,
      "id": "tether",
      "last_updated": "2026-05-22T05:40:00Z",
      "market_cap_usd": 189646973535.0,
      "name": "Tether",
      "price_eur": null,
      "price_usd": 0.998909,
      "symbol": "USDT",
      "total_supply": 195319800967.5,
      "volume_24h_usd": 49815705464.0
    },
    {
      "change_24h_pct": 0.6418,
      "change_7d_pct": -3.1529,
      "circulating_supply": 134785081.85,
      "id": "binancecoin",
      "last_updated": "2026-05-22T05:39:59Z",
      "market_cap_usd": 88558812216.0,
      "name": "BNB",
      "price_eur": null,
      "price_usd": 657.06,
      "symbol": "BNB",
      "total_supply": 134785079.33,
      "volume_24h_usd": 734375651.0
    },
    {
      "change_24h_pct": -0.4496,
      "change_7d_pct": -7.9453,
      "circulating_supply": 61829045420.0,
      "id": "ripple",
      "last_updated": "2026-05-22T05:39:59Z",
      "market_cap_usd": 84609554929.0,
      "name": "XRP",
      "price_eur": null,
      "price_usd": 1.37,
      "symbol": "XRP",
      "total_supply": 99985666473.0,
      "volume_24h_usd": 1652684561.0
    }
  ],
  "success": true
}

Example Response

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