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.0484,
"change_7d_pct": 1.4391,
"coin_id": "bitcoin",
"history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
"last_updated": "2026-04-05T18:10:00Z",
"market_cap_usd": 1346382330895.0,
"name": "Bitcoin",
"ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
"price_eur": 58382.64650256,
"price_usd": 67286.0,
"symbol": "BTC",
"volume_24h_usd": 21434265733.0
},
"success": true
}