← 金融与货币

加密货币价格

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": -0.5,
      "change_7d_pct": -1.0,
      "circulating_supply": 20069043.0,
      "id": "bitcoin",
      "last_updated": "2026-08-12T07:17:20Z",
      "market_cap_usd": 1278403010411.0,
      "name": "Bitcoin",
      "price_eur": 55197.57387874,
      "price_usd": 63698.0,
      "symbol": "BTC",
      "total_supply": 20069043.0,
      "volume_24h_usd": 21051018492.0
    },
    {
      "change_24h_pct": 0.7,
      "change_7d_pct": 0.8,
      "circulating_supply": 120682013.99,
      "id": "ethereum",
      "last_updated": "2026-08-12T07:17:20Z",
      "market_cap_usd": 227890806639.0,
      "name": "Ethereum",
      "price_eur": 1636.28250225,
      "price_usd": 1888.27,
      "symbol": "ETH",
      "total_supply": 120682013.99,
      "volume_24h_usd": 6921685866.0
    },
    {
      "change_24h_pct": 0.0,
      "change_7d_pct": 0.0,
      "circulating_supply": 183178499291.63,
      "id": "tether",
      "last_updated": "2026-08-12T07:17:20Z",
      "market_cap_usd": 183026859264.0,
      "name": "Tether",
      "price_eur": 0.86583016,
      "price_usd": 0.999168,
      "symbol": "USDT",
      "total_supply": 188645444732.79,
      "volume_24h_usd": 34628219799.0
    },
    {
      "change_24h_pct": 1.9,
      "change_7d_pct": 1.5,
      "circulating_supply": 133164199.67,
      "id": "binancecoin",
      "last_updated": "2026-08-12T07:17:20Z",
      "market_cap_usd": 81404019752.0,
      "name": "BNB",
      "price_eur": 529.79202986,
      "price_usd": 611.38,
      "symbol": "BNB",
      "total_supply": 133164199.67,
      "volume_24h_usd": 910729899.0
    },
    {
      "change_24h_pct": 0.0,
      "change_7d_pct": 0.0,
      "circulating_supply": 72105799143.95,
      "id": "usd-coin",
      "last_updated": "2026-08-12T07:17:20Z",
      "market_cap_usd": 72079080921.0,
      "name": "USDC",
      "price_eur": 0.86622964,
      "price_usd": 0.999629,
      "symbol": "USDC",
      "total_supply": 72115915587.52,
      "volume_24h_usd": 8380204217.0
    }
  ],
  "success": true
}

响应示例

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