← Fjármál og gjaldmiðlar

Dulritunarsagasamantekt

GET /crypto/summary/:coin_id

Fáðu aggregate statistics for a coin's price history: total data points, dagsetningabil covered, and min/max/average USD prices. Gagnlegt fyrir understanding how much söguleg gögn is available and getting a quick statistical overview.

Dæmi um fyrirspurnir

Grunnnotkun
curl https://nordapi.ee/api/v1/crypto/summary/bitcoin

Lifandi svar

{
  "data": {
    "change_24h_pct": 0.2217,
    "change_7d_pct": 1.5167,
    "coin_id": "bitcoin",
    "history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
    "last_updated": "2026-04-05T22:40:00Z",
    "market_cap_usd": 1350482647407.0,
    "name": "Bitcoin",
    "ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
    "price_eur": 58616.0521428,
    "price_usd": 67555.0,
    "symbol": "BTC",
    "volume_24h_usd": 23157004665.0
  },
  "success": true
}