← 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.0237,
      "change_7d_pct": -5.3615,
      "circulating_supply": 20048362.0,
      "id": "bitcoin",
      "last_updated": "2026-06-26T13:49:58Z",
      "market_cap_usd": 1190953009850.0,
      "name": "Bitcoin",
      "price_eur": 52341.73889152,
      "price_usd": 59366.0,
      "symbol": "BTC",
      "total_supply": 20048362.0,
      "volume_24h_usd": 49053187202.0
    },
    {
      "change_24h_pct": -2.0821,
      "change_7d_pct": -8.8149,
      "circulating_supply": 120683589.3,
      "id": "ethereum",
      "last_updated": "2026-06-26T13:49:58Z",
      "market_cap_usd": 186478370583.0,
      "name": "Ethereum",
      "price_eur": 1360.53606641,
      "price_usd": 1543.12,
      "symbol": "ETH",
      "total_supply": 120683589.3,
      "volume_24h_usd": 17614516901.0
    },
    {
      "change_24h_pct": 0.0084,
      "change_7d_pct": -0.0592,
      "circulating_supply": 186335414603.64,
      "id": "tether",
      "last_updated": "2026-06-26T13:49:57Z",
      "market_cap_usd": 186069979815.0,
      "name": "Tether",
      "price_eur": 0.88042409,
      "price_usd": 0.998577,
      "symbol": "USDT",
      "total_supply": 191802356267.69,
      "volume_24h_usd": 72450898372.0
    },
    {
      "change_24h_pct": 0.9932,
      "change_7d_pct": -2.47,
      "circulating_supply": 134782946.34,
      "id": "binancecoin",
      "last_updated": "2026-06-26T13:49:58Z",
      "market_cap_usd": 75296098613.0,
      "name": "BNB",
      "price_eur": 492.32058046,
      "price_usd": 558.39,
      "symbol": "BNB",
      "total_supply": 134782946.34,
      "volume_24h_usd": 1117081560.0
    },
    {
      "change_24h_pct": 0.008,
      "change_7d_pct": -0.0085,
      "circulating_supply": 73570150582.45,
      "id": "usd-coin",
      "last_updated": "2026-06-26T13:49:57Z",
      "market_cap_usd": 73548709189.0,
      "name": "USDC",
      "price_eur": 0.88144155,
      "price_usd": 0.999731,
      "symbol": "USDC",
      "total_supply": 73600390333.48,
      "volume_24h_usd": 19002031093.0
    }
  ],
  "success": true
}

Example Response

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