GET /v1/history/{coingecko_id}
Daily score and market history for one coin (up to 365 days).
GET /api/v1/history/{coingecko_id}
Query parameters
-
days(integer, default 90, max 365): Lookback window in UTC days.
Example
curl -s \
-H "Authorization: Bearer kv_live_YOUR_KEY" \
"https://app.kvantrank.com/api/v1/history/solana?days=90" Response fields
meta
| Field | Type | Description |
|---|---|---|
meta.product | string | Product identifier (Kvantrank Data API). |
meta.tagline | string | Short product summary. |
meta.docs | string | URL to public API documentation. |
meta.coingecko_id | string | Requested CoinGecko id. |
meta.latest_date_utc | string | Latest managed snapshot date. |
meta.days | integer | Lookback window returned. |
history[]
| Field | Type | Description |
|---|---|---|
history[].date_utc | string | UTC date for the row. |
history[].mcap_rank | number | null | Market-cap rank that day. |
history[].price_usd | number | null | Spot USD price. |
history[].market_cap | number | null | Market cap (USD). |
history[].vol_24h | number | null | 24-hour volume (USD). |
history[].hype_score | number | null | Hype score. |
history[].breakout_score | number | null | Breakout score. |
history[].hype_momentum_7d | number | null | 7-day hype momentum. |
history[].rank_delta_7d | number | null | 7-day rank change. |
history[].success_index | number | null | Success index. |
history[].price_change_24h | number | null | 24-hour price change (%). |
history[].price_change_7d | number | null | 7-day price change (%). |
Snapshot fields (price, cap, volume) align to the same UTC pipeline run as Kvantrank scores. Intraday charting may need a separate live feed.