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.5,
"change_7d_pct": -1.0,
"circulating_supply": 20069043.0,
"id": "bitcoin",
"last_updated": "2026-08-12T07:17:20Z",
"market_cap_usd": 1278403010411.0,
"name": "Bitcoin",
"price_eur": 55197.57387874,
"price_usd": 63698.0,
"symbol": "BTC",
"total_supply": 20069043.0,
"volume_24h_usd": 21051018492.0
},
{
"change_24h_pct": 0.7,
"change_7d_pct": 0.8,
"circulating_supply": 120682013.99,
"id": "ethereum",
"last_updated": "2026-08-12T07:17:20Z",
"market_cap_usd": 227890806639.0,
"name": "Ethereum",
"price_eur": 1636.28250225,
"price_usd": 1888.27,
"symbol": "ETH",
"total_supply": 120682013.99,
"volume_24h_usd": 6921685866.0
},
{
"change_24h_pct": 0.0,
"change_7d_pct": 0.0,
"circulating_supply": 183178499291.63,
"id": "tether",
"last_updated": "2026-08-12T07:17:20Z",
"market_cap_usd": 183026859264.0,
"name": "Tether",
"price_eur": 0.86583016,
"price_usd": 0.999168,
"symbol": "USDT",
"total_supply": 188645444732.79,
"volume_24h_usd": 34628219799.0
},
{
"change_24h_pct": 1.9,
"change_7d_pct": 1.5,
"circulating_supply": 133164199.67,
"id": "binancecoin",
"last_updated": "2026-08-12T07:17:20Z",
"market_cap_usd": 81404019752.0,
"name": "BNB",
"price_eur": 529.79202986,
"price_usd": 611.38,
"symbol": "BNB",
"total_supply": 133164199.67,
"volume_24h_usd": 910729899.0
},
{
"change_24h_pct": 0.0,
"change_7d_pct": 0.0,
"circulating_supply": 72105799143.95,
"id": "usd-coin",
"last_updated": "2026-08-12T07:17:20Z",
"market_cap_usd": 72079080921.0,
"name": "USDC",
"price_eur": 0.86622964,
"price_usd": 0.999629,
"symbol": "USDC",
"total_supply": 72115915587.52,
"volume_24h_usd": 8380204217.0
}
],
"success": true
}
{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}