OHLCV
Retrieve daily open, high, low, close, and volume bars for one ticker.
No additional API delay
The newest EOD bar stored by TickerDB is available from this endpoint immediately. Summary also includes the same-candle ohlcv object for the requested snapshot; use this endpoint when you need paginated daily or weekly bar history. Stocks and ETFs are split-and-dividend adjusted; crypto bars are unadjusted.
Parameters
| Parameter | Type | Description |
|---|---|---|
ticker | path | Asset symbol, such as AAPL or ZECUSD. |
timeframe | string | daily (default) or weekly. Weekly bars cover Monday through Sunday and are dated by the Sunday week end, matching summary at timeframe=weekly. The in-progress week is not returned. |
start | string | Optional inclusive start date in YYYY-MM-DD format, compared against the bar date. For weekly that is the Sunday week end. |
end | string | Optional inclusive end date in YYYY-MM-DD format, compared against the bar date. |
limit | integer | Bars per page. Default 100, maximum 1000. |
order | string | desc (default) or asc. |
cursor | string | The prior response's next_cursor; exclusive in the selected order. |
History follows the account plan: Starter 30 days, Plus 3 years, and Pro 7 years.
Credit cost
OHLCV costs 1 credit per 100 bars returned, rounded up, with a 1 credit minimum for valid requests. Bulk or multi-symbol OHLCV exports are reserved for Business/export plans.
Example
curl
curl "https://api.tickerdb.com/v1/ohlcv/ZECUSD?start=2026-01-01&limit=1000&order=asc" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
200 OK
{
"ticker": "ZECUSD",
"asset_class": "crypto",
"timeframe": "daily",
"data_status": "eod",
"adjustment": "none",
"order": "desc",
"row_count": 2,
"has_more": true,
"next_cursor": "2026-06-18",
"bars": [
{
"date": "2026-06-19",
"open": ...,
"high": ...,
"low": ...,
"close": ...,
"volume": ...
}
]
}
Pagination
If has_more is true, make the same request with cursor=next_cursor. The cursor bar is excluded, so pages do not overlap.