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.
curl https://nordapi.ee/api/v1/crypto/summary/bitcoin
{
"data": {
"change_24h_pct": 0.4559,
"change_7d_pct": 3.1952,
"coin_id": "bitcoin",
"history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
"last_updated": "2026-05-10T19:10:00Z",
"market_cap_usd": 1626520404895.0,
"name": "Bitcoin",
"ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
"price_eur": 69074.90824137,
"price_usd": 81239.0,
"symbol": "BTC",
"volume_24h_usd": 18471685047.0
},
"success": true
}