v1
latestOpenAPI 3.0.32026-08-04850206.9 KBCandle history
Per-coin OHLC + volume + marketcap time series. Pick interval: minutely, half-hourly, hourly or daily. Retention is a hard property of the rollup pipeline — minutely 8 days, half-hourly 3 months, hourly 6 months, daily forever; requests beyond a window return what exists. When a limit is set you get the MOST RECENT N rows in the window, emitted oldest-first. Prices are decimal strings.
Query parameters
minutely, half-hourly, hourly or daily (default daily).
minutely, half-hourly, hourly or daily (default daily).
ISO date/time lower bound.
ISO date/time lower bound.
ISO date/time upper bound (a date-only value means through that day).
ISO date/time upper bound (a date-only value means through that day).
Max rows (1–2000, default 1000).
Max rows (1–2000, default 1000).
Response
Example response
{
"data": [
{
"time": "2026-06-14T23:01:01+00:00",
"price": "65481.259006434",
"open": "64193.294621057",
"high": "65513.599862059",
"low": "63528.138075558",
"close": "65481.259006434",
"volume_24h": 3795657715,
"marketcap": 1303678106704.5
}
],
"meta": {
"coin": "bitcoin",
"interval": "daily",
"count": 1,
"retention": "full history"
}
}