← Finance & Currency

Crypto History Summary

GET /crypto/summary/:coin_id

Get aggregate statistics for a coin's price history: total data points, date range covered, and min/max/average USD prices. Useful for understanding how much historical data is available and getting a quick statistical overview.

See it visualized

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/crypto/summary/bitcoin

Live Response

{
  "data": {
    "change_24h_pct": -0.3377,
    "change_7d_pct": 4.787,
    "coin_id": "bitcoin",
    "history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
    "last_updated": "2026-07-05T17:09:23Z",
    "market_cap_usd": 1256306769125.0,
    "name": "Bitcoin",
    "ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
    "price_eur": 54732.70412316,
    "price_usd": 62658.0,
    "symbol": "BTC",
    "volume_24h_usd": 17408601166.0
  },
  "success": true
}