← 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.3377,
      "change_7d_pct": 4.787,
      "circulating_supply": 20052484.0,
      "id": "bitcoin",
      "last_updated": "2026-07-05T17:09:23Z",
      "market_cap_usd": 1256306769125.0,
      "name": "Bitcoin",
      "price_eur": 54732.70412316,
      "price_usd": 62658.0,
      "symbol": "BTC",
      "total_supply": 20052490.0,
      "volume_24h_usd": 17408601166.0
    },
    {
      "change_24h_pct": -0.3042,
      "change_7d_pct": 12.9868,
      "circulating_supply": 120683221.19,
      "id": "ethereum",
      "last_updated": "2026-07-05T17:09:23Z",
      "market_cap_usd": 214183169981.0,
      "name": "Ethereum",
      "price_eur": 1550.56777685,
      "price_usd": 1775.09,
      "symbol": "ETH",
      "total_supply": 120683221.19,
      "volume_24h_usd": 9982533824.0
    },
    {
      "change_24h_pct": -0.0188,
      "change_7d_pct": 0.0461,
      "circulating_supply": 184284482788.23,
      "id": "tether",
      "last_updated": "2026-07-05T17:09:12Z",
      "market_cap_usd": 184112131092.0,
      "name": "Tether",
      "price_eur": 0.87270789,
      "price_usd": 0.999076,
      "symbol": "USDT",
      "total_supply": 189751424522.93,
      "volume_24h_usd": 33337387003.0
    },
    {
      "change_24h_pct": 1.7665,
      "change_7d_pct": 5.715,
      "circulating_supply": 134782478.99,
      "id": "binancecoin",
      "last_updated": "2026-07-05T17:09:22Z",
      "market_cap_usd": 78906664931.0,
      "name": "BNB",
      "price_eur": 511.35569271,
      "price_usd": 585.4,
      "symbol": "BNB",
      "total_supply": 134782478.99,
      "volume_24h_usd": 703193043.0
    },
    {
      "change_24h_pct": -0.0081,
      "change_7d_pct": 0.008,
      "circulating_supply": 72932072019.32,
      "id": "usd-coin",
      "last_updated": "2026-07-05T17:09:21Z",
      "market_cap_usd": 72910163987.0,
      "name": "USDC",
      "price_eur": 0.87327131,
      "price_usd": 0.999721,
      "symbol": "USDC",
      "total_supply": 72933012707.34,
      "volume_24h_usd": 5547096518.0
    }
  ],
  "success": true
}

Example Response

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