Charts HTTP API
Charts WS Server
Charts HTTP API
Historical and initial OHLC / market-cap bars on https://charts.snek.fun/v1
GET
Charts HTTP API
The charts service exposes read-only HTTP endpoints for candlestick (
/v1/charts/...) and market-cap bars (/v1/charts/mcap/...). Prefer WebSocket for live updates.
Base URL: https://charts.snek.fun/v1
Auth: Public
Resolution query parameter
All endpoints takeresolution — one of: min1, min5, hour1, day1, week1, month1 (see OpenAPI / server enum).
GET /v1/charts/history
OHLCV history for a base / quote pair over a time range.Query parameters
Base asset id (
policy.hex or . for ADA).Quote asset id.
Range start (Unix seconds).
Range end (Unix seconds).
e.g.
min1, hour1.Response
JSON array of bar objects (LastBarWs): pair, time, low, high, open, close, volume (decimals).
GET /v1/charts/initial-state
Latest bar (and relevance flag) before subscribing over WebSocket.Response
GET /v1/charts/mcap/history
Market-cap bars over a range (same query shape ascharts/history).
GET /v1/charts/mcap/initial-state
Latest market-cap bar snapshot (mCap string, time, pair, isRelevant in the bar payload — see OpenAPI).
OpenAPI
GET /v1/docs/openapi on the same host returns the full YAML spec (includes all routes served by the process).