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.1795,
"change_7d_pct": 1.6122,
"circulating_supply": 20011846.0,
"id": "bitcoin",
"last_updated": "2026-04-05T19:30:00Z",
"market_cap_usd": 1350911111792.0,
"name": "Bitcoin",
"price_eur": 58520.6074572,
"price_usd": 67445.0,
"symbol": "BTC",
"total_supply": 20011846.0,
"volume_24h_usd": 21384905531.0
},
{
"change_24h_pct": -0.0866,
"change_7d_pct": 3.5345,
"circulating_supply": 120691237.98,
"id": "ethereum",
"last_updated": "2026-04-05T19:30:00Z",
"market_cap_usd": 249557663837.0,
"name": "Ethereum",
"price_eur": 1792.99783331,
"price_usd": 2066.43,
"symbol": "ETH",
"total_supply": 120691237.98,
"volume_24h_usd": 8237367419.0
},
{
"change_24h_pct": -0.0165,
"change_7d_pct": 0.0529,
"circulating_supply": 184151480312.46,
"id": "tether",
"last_updated": "2026-04-05T19:29:57Z",
"market_cap_usd": 184108872737.0,
"name": "Tether",
"price_eur": 0.86744729,
"price_usd": 0.999733,
"symbol": "USDT",
"total_supply": 189618420160.66,
"volume_24h_usd": 33989708937.0
},
{
"change_24h_pct": -0.1335,
"change_7d_pct": -2.6243,
"circulating_supply": 136356865.48,
"id": "binancecoin",
"last_updated": "2026-04-05T19:30:00Z",
"market_cap_usd": 80900066733.0,
"name": "BNB",
"price_eur": 514.6811287,
"price_usd": 593.17,
"symbol": "BNB",
"total_supply": 136356865.48,
"volume_24h_usd": 511009906.0
},
{
"change_24h_pct": -0.9462,
"change_7d_pct": -1.3475,
"circulating_supply": 61405531717.0,
"id": "ripple",
"last_updated": "2026-04-05T19:29:56Z",
"market_cap_usd": 80157205082.0,
"name": "XRP",
"price_eur": 1.13665944,
"price_usd": 1.31,
"symbol": "XRP",
"total_supply": 99985687636.0,
"volume_24h_usd": 1215259352.0
}
],
"success": true
}
{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}