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

FieldTypeDescription
meta.productstringProduct identifier (Kvantrank Data API).
meta.taglinestringShort product summary.
meta.docsstringURL to public API documentation.
meta.coingecko_idstringRequested CoinGecko id.
meta.latest_date_utcstringLatest managed snapshot date.
meta.daysintegerLookback window returned.

history[]

FieldTypeDescription
history[].date_utcstringUTC date for the row.
history[].mcap_ranknumber | nullMarket-cap rank that day.
history[].price_usdnumber | nullSpot USD price.
history[].market_capnumber | nullMarket cap (USD).
history[].vol_24hnumber | null24-hour volume (USD).
history[].hype_scorenumber | nullHype score.
history[].breakout_scorenumber | nullBreakout score.
history[].hype_momentum_7dnumber | null7-day hype momentum.
history[].rank_delta_7dnumber | null7-day rank change.
history[].success_indexnumber | nullSuccess index.
history[].price_change_24hnumber | null24-hour price change (%).
history[].price_change_7dnumber | null7-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.