GET /crypto/summary/:coin_id
Erhalten Sie aggregate statistics for a coin's price history: total data points, date range covered, und min/max/average USD prices. Nützlich für understanding how much historical data is available und getting a quick statistical overview.
curl https://nordapi.ee/api/v1/crypto/summary/bitcoin
{
"data": {
"change_24h_pct": 0.1795,
"change_7d_pct": 1.6122,
"coin_id": "bitcoin",
"history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
"last_updated": "2026-04-05T19:30:00Z",
"market_cap_usd": 1350911111792.0,
"name": "Bitcoin",
"ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
"price_eur": 58520.6074572,
"price_usd": 67445.0,
"symbol": "BTC",
"volume_24h_usd": 21384905531.0
},
"success": true
}