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.5169,
"change_7d_pct": -2.2,
"circulating_supply": 20078834.0,
"id": "bitcoin",
"last_updated": "2026-09-02T23:47:30Z",
"market_cap_usd": 1549106690159.0,
"name": "Bitcoin",
"price_eur": 66635.86107153,
"price_usd": 77151.0,
"symbol": "BTC",
"total_supply": 20078834.0,
"volume_24h_usd": 26665015923.0
},
{
"change_24h_pct": -1.5907,
"change_7d_pct": -4.7,
"circulating_supply": 122012212.91,
"id": "ethereum",
"last_updated": "2026-09-02T23:47:30Z",
"market_cap_usd": 291008907517.0,
"name": "Ethereum",
"price_eur": 2060.01036311,
"price_usd": 2385.08,
"symbol": "ETH",
"total_supply": 122012212.91,
"volume_24h_usd": 12764875584.0
},
{
"change_24h_pct": 0.0038,
"change_7d_pct": 0.0,
"circulating_supply": 183384335764.32,
"id": "tether",
"last_updated": "2026-09-02T23:47:30Z",
"market_cap_usd": 183326210079.0,
"name": "Tether",
"price_eur": 0.86343323,
"price_usd": 0.999683,
"symbol": "USDT",
"total_supply": 188851281632.55,
"volume_24h_usd": 47373716133.0
},
{
"change_24h_pct": 0.5413,
"change_7d_pct": -2.4,
"circulating_supply": 133162233.73,
"id": "binancecoin",
"last_updated": "2026-09-02T23:47:30Z",
"market_cap_usd": 91475195995.0,
"name": "BNB",
"price_eur": 593.32354426,
"price_usd": 686.95,
"symbol": "BNB",
"total_supply": 133162227.42,
"volume_24h_usd": 787896943.0
},
{
"change_24h_pct": -0.4832,
"change_7d_pct": -3.9,
"circulating_supply": 62744504852.0,
"id": "ripple",
"last_updated": "2026-09-02T23:47:30Z",
"market_cap_usd": 84596662517.0,
"name": "XRP",
"price_eur": 1.16600449,
"price_usd": 1.35,
"symbol": "XRP",
"total_supply": 99985627691.0,
"volume_24h_usd": 2259721485.0
}
],
"success": true
}
{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}