← Rahoitus ja valuutta

Kryptohistorian yhteenveto

GET /crypto/summary/:coin_id

Hae aggregate statistics for a coin's price history: total data points, date range covered, and min/max/average USD prices. Hyödyllinen understanding how much historical data is available and getting a quick statistical overview.

Esimerkkipyynnöt

Peruskäyttö
curl https://nordapi.ee/api/v1/crypto/summary/bitcoin

Reaaliaikainen vastaus

{
  "data": {
    "change_24h_pct": 0.2499,
    "change_7d_pct": 1.3542,
    "coin_id": "bitcoin",
    "history_endpoint": "/api/v1/crypto/history/bitcoin?days=30",
    "last_updated": "2026-04-05T21:40:00Z",
    "market_cap_usd": 1349815546498.0,
    "name": "Bitcoin",
    "ohlc_endpoint": "/api/v1/crypto/ohlc/bitcoin?days=30",
    "price_eur": 58522.34281512,
    "price_usd": 67447.0,
    "symbol": "BTC",
    "volume_24h_usd": 18656268169.0
  },
  "success": true
}