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.
limit
optional
default: 100
Number of coins (max 250)
| Name | Required | Default | Description |
|---|---|---|---|
limit |
No | 100 | Number of coins (max 250) |
curl https://nordapi.ee/api/v1/crypto/prices?limit=5
curl "https://nordapi.ee/api/v1/crypto/prices?limit=5"
curl "https://nordapi.ee/api/v1/crypto/prices"
curl "https://nordapi.ee/api/v1/crypto/prices?limit=250"
{
"count": 5,
"data": [
{
"change_24h_pct": -0.3,
"change_7d_pct": -0.6,
"circulating_supply": 20069015.0,
"id": "bitcoin",
"last_updated": "2026-08-12T06:37:20Z",
"market_cap_usd": 1276229443934.0,
"name": "Bitcoin",
"price_eur": 55109.18566348,
"price_usd": 63596.0,
"symbol": "BTC",
"total_supply": 20069043.0,
"volume_24h_usd": 21075112082.0
},
{
"change_24h_pct": 0.8,
"change_7d_pct": 1.2,
"circulating_supply": 120682013.99,
"id": "ethereum",
"last_updated": "2026-08-12T06:37:20Z",
"market_cap_usd": 227373404246.0,
"name": "Ethereum",
"price_eur": 1632.85095977,
"price_usd": 1884.31,
"symbol": "ETH",
"total_supply": 120682013.99,
"volume_24h_usd": 6977134866.0
},
{
"change_24h_pct": 0.0,
"change_7d_pct": 0.0,
"circulating_supply": 183178499291.63,
"id": "tether",
"last_updated": "2026-08-12T06:37:20Z",
"market_cap_usd": 183022912346.0,
"name": "Tether",
"price_eur": 0.86580763,
"price_usd": 0.999142,
"symbol": "USDT",
"total_supply": 188645444732.79,
"volume_24h_usd": 34555998133.0
},
{
"change_24h_pct": 2.3,
"change_7d_pct": 2.3,
"circulating_supply": 133164203.42,
"id": "binancecoin",
"last_updated": "2026-08-12T06:37:20Z",
"market_cap_usd": 81281975313.0,
"name": "BNB",
"price_eur": 528.95147526,
"price_usd": 610.41,
"symbol": "BNB",
"total_supply": 133164199.67,
"volume_24h_usd": 900440693.0
},
{
"change_24h_pct": 0.0,
"change_7d_pct": 0.0,
"circulating_supply": 72142088037.98,
"id": "usd-coin",
"last_updated": "2026-08-12T06:37:20Z",
"market_cap_usd": 72113957497.0,
"name": "USDC",
"price_eur": 0.86620711,
"price_usd": 0.999603,
"symbol": "USDC",
"total_supply": 72115915587.52,
"volume_24h_usd": 8293357957.0
}
],
"success": true
}
{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}