← 金融与货币

加密货币价格

GET /crypto/prices

获取按市值排列的前 250 种加密货币的当前价格、市值、24 小时交易量和 24 小时/7 天百分比变化。数据来源于 CoinGecko 并频繁更新。可配置的限制参数允许你只获取前 5 或最多 250 种代币。对加密货币投资组合追踪器、市场概览仪表板和价格预警系统至关重要。

查看可视化效果

参数

limit 可选 默认: 100

Number of coins (max 250)

请求示例

基本用法
curl https://nordapi.ee/api/v1/crypto/prices?limit=5
Top 5 cryptocurrencies
curl "https://nordapi.ee/api/v1/crypto/prices?limit=5"
Top 100 (default)
curl "https://nordapi.ee/api/v1/crypto/prices"
Top 250 cryptocurrencies
curl "https://nordapi.ee/api/v1/crypto/prices?limit=250"

实时响应

{
  "count": 5,
  "data": [
    {
      "change_24h_pct": -2.3292,
      "change_7d_pct": -4.6055,
      "circulating_supply": 20032946.0,
      "id": "bitcoin",
      "last_updated": "2026-05-22T19:39:57Z",
      "market_cap_usd": 1518787627868.0,
      "name": "Bitcoin",
      "price_eur": 65335.92086747,
      "price_usd": 75757.0,
      "symbol": "BTC",
      "total_supply": 20032962.0,
      "volume_24h_usd": 28036772682.0
    },
    {
      "change_24h_pct": -3.208,
      "change_7d_pct": -7.2105,
      "circulating_supply": 120685588.47,
      "id": "ethereum",
      "last_updated": "2026-05-22T19:39:57Z",
      "market_cap_usd": 249716412962.0,
      "name": "Ethereum",
      "price_eur": 1783.0702947,
      "price_usd": 2067.47,
      "symbol": "ETH",
      "total_supply": 120685588.47,
      "volume_24h_usd": 11873698156.0
    },
    {
      "change_24h_pct": -0.0158,
      "change_7d_pct": -0.0589,
      "circulating_supply": 189852859771.04,
      "id": "tether",
      "last_updated": "2026-05-22T19:39:57Z",
      "market_cap_usd": 189634397428.0,
      "name": "Tether",
      "price_eur": 0.86146615,
      "price_usd": 0.99887,
      "symbol": "USDT",
      "total_supply": 195319800967.5,
      "volume_24h_usd": 49726971360.0
    },
    {
      "change_24h_pct": -1.0379,
      "change_7d_pct": -3.6623,
      "circulating_supply": 134785017.98,
      "id": "binancecoin",
      "last_updated": "2026-05-22T19:39:57Z",
      "market_cap_usd": 87589134019.0,
      "name": "BNB",
      "price_eur": 560.03449945,
      "price_usd": 649.36,
      "symbol": "BNB",
      "total_supply": 134785017.98,
      "volume_24h_usd": 766288687.0
    },
    {
      "change_24h_pct": -2.6706,
      "change_7d_pct": -6.9551,
      "circulating_supply": 61829045420.0,
      "id": "ripple",
      "last_updated": "2026-05-22T19:39:57Z",
      "market_cap_usd": 82930805885.0,
      "name": "XRP",
      "price_eur": 1.15567055,
      "price_usd": 1.34,
      "symbol": "XRP",
      "total_supply": 99985666473.0,
      "volume_24h_usd": 1701427973.0
    }
  ],
  "success": true
}

响应示例

{"success":true,"data":[{"id":"bitcoin","symbol":"BTC","price_usd":70528.0,"market_cap_usd":1410633009895}]}