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.4623,
"change_7d_pct": 2.9946,
"circulating_supply": 20027537.0,
"id": "bitcoin",
"last_updated": "2026-05-10T20:30:01Z",
"market_cap_usd": 1624532056572.0,
"name": "Bitcoin",
"price_eur": 68983.92958356,
"price_usd": 81132.0,
"symbol": "BTC",
"total_supply": 20027568.0,
"volume_24h_usd": 20337285438.0
},
{
"change_24h_pct": 1.1125,
"change_7d_pct": 1.0013,
"circulating_supply": 120686604.07,
"id": "ethereum",
"last_updated": "2026-05-10T20:30:01Z",
"market_cap_usd": 283997828650.0,
"name": "Ethereum",
"price_eur": 2000.9522897,
"price_usd": 2353.32,
"symbol": "ETH",
"total_supply": 120686604.07,
"volume_24h_usd": 14316339810.0
},
{
"change_24h_pct": -0.0061,
"change_7d_pct": -0.0011,
"circulating_supply": 189691595367.16,
"id": "tether",
"last_updated": "2026-05-10T20:29:58Z",
"market_cap_usd": 189644160361.0,
"name": "Tether",
"price_eur": 0.85006802,
"price_usd": 0.999765,
"symbol": "USDT",
"total_supply": 195158535623.37,
"volume_24h_usd": 45616872269.0
},
{
"change_24h_pct": 3.8721,
"change_7d_pct": 5.9224,
"circulating_supply": 61796225236.0,
"id": "ripple",
"last_updated": "2026-05-10T20:29:58Z",
"market_cap_usd": 91216324607.0,
"name": "XRP",
"price_eur": 1.25839639,
"price_usd": 1.48,
"symbol": "XRP",
"total_supply": 99985670046.0,
"volume_24h_usd": 2390487749.0
},
{
"change_24h_pct": 1.3259,
"change_7d_pct": 6.3482,
"circulating_supply": 134785658.48,
"id": "binancecoin",
"last_updated": "2026-05-10T20:30:00Z",
"market_cap_usd": 88771342673.0,
"name": "BNB",
"price_eur": 560.13944105,
"price_usd": 658.78,
"symbol": "BNB",
"total_supply": 134785658.48,
"volume_24h_usd": 637591693.0
}
],
"success": true
}
{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}