Signal history
/v2/signals/{signal}/{ticker}/history/{interval}Returns a sequence of `{t, v}` bars for the requested signal × ticker at the chosen resolution. `t` is an ISO timestamp (or `YYYY-MM-DD` for daily/weekly). `v` is the signal value at that bar (a number for numeric signals, `true`/`false` for boolean flags).
Plan access
Included on every plan.
Rate limit
Hobby 60/min · Pro 2,000/min · Scale 10,000/min.
History
Hobby 1y · Pro 5y · Scale all-time.
Query parameters
stringrequiredA column on the wide-state tables (matches the schema page 1:1).
stringrequiredTicker symbol.
stringrequiredResolution. Daily-only signals (SMAs, RSI, MACD, fundamentals) are not stored at minute/hourly resolution; request `1d` for those.
stringEarliest bar timestamp (inclusive). YYYY-MM-DD or ISO. Defaults to your plan's history window.
stringLatest bar timestamp (inclusive). YYYY-MM-DD or ISO. Defaults to "now".
integerdefault 252Page size. Max 1000.
stringOpaque cursor. Walks back in time page-by-page from the most-recent bar.
Status codes
200as_of, count, next_cursor, and bars. Bars are returned in chronological order (earliest first); cursors walk backward through history.400401