View as markdown
Endpoints · Tickers

Ticker as-of date

GEThttps://api.tickerbot.io/v2/tickers/{ticker}/history

Time-travel to any historical date and pull the whole wide row as it stood then, including the boolean flag values, technical indicators, and the most-recent fundamentals known on that date. Useful for "what did we know" reconstructions and replaying screens across history.

Plan access

Included on every plan.

Rate limit

Hobby 600/min · Pro 6,000/min · Scale 60,000/min.

History

Replayable on every plan.

stringrequired

Ticker symbol.

stringrequired

Target date as `YYYY-MM-DD` or full ISO timestamp `YYYY-MM-DDTHH:MM:SSZ`. A time component is truncated to the calendar day (`_meta.resolution: "daily"`). The response returns the most-recent daily snapshot on or before this date, with **no lookback limit** — it walks back as far as needed and 404s only if the ticker has no state at all on/before the date. (This differs from `/v2/scan?asof=` and `/v2/signals/{signal}?asof=`, which cap carry-forward at 14 days and return empty rather than 404.)

200
Wide row at the requested date under data. _meta.frozen_fields lists fields that are not historized (sector, industry, etc.; JOIN to /tickers/{t} for current values).
400
bad_requestasof missing or not YYYY-MM-DD / YYYY-MM-DDTHH:MM:SSZ.
401
Missing or invalid API key.
404
not_found — the ticker has no historical state at or before the requested date.