GET /crypto/prices
获取按市值排列的前 250 种加密货币的当前价格、市值、24 小时交易量和 24 小时/7 天百分比变化。数据来源于 CoinGecko 并频繁更新。可配置的限制参数允许你只获取前 5 或最多 250 种代币。对加密货币投资组合追踪器、市场概览仪表板和价格预警系统至关重要。
limit
可选
默认: 100
Number of coins (max 250)
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
limit |
否 | 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}]}