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.3,
"change_7d_pct": -0.6,
"coin_id": "bitcoin",
"history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
"last_updated": "2026-08-12T06:37:20Z",
"market_cap_usd": 1276229443934.0,
"name": "Bitcoin",
"ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
"price_eur": 55109.18566348,
"price_usd": 63596.0,
"symbol": "BTC",
"volume_24h_usd": 21075112082.0
},
"success": true
}