GET /crypto/summary/:coin_id
Obtenez les statistiques agrégées pour a coin's price history: total data points, plage de dates covered, et min/max/average USD prices. Utile pour les understanding how much historical data is disponible et getting a quick statistical overview.
curl https://nordapi.ee/api/v1/crypto/summary/bitcoin
{
"data": {
"change_24h_pct": 0.5283,
"change_7d_pct": 2.0292,
"coin_id": "bitcoin",
"history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
"last_updated": "2026-04-05T20:40:00Z",
"market_cap_usd": 1349982371824.0,
"name": "Bitcoin",
"ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
"price_eur": 58681.1280648,
"price_usd": 67630.0,
"symbol": "BTC",
"volume_24h_usd": 18534316409.0
},
"success": true
}