Endpoints · Strategies
Per-bar history for a strategy on a ticker
GET
/v2/strategies/{name}/{ticker}/history/{interval}Returns the condition evaluated at each bar for a given (strategy × ticker × interval). Same response shape as /v2/signals/{name}/{ticker}/history/{interval} — the dashboard chart overlay code handles both interchangeably. Useful for visualizing past firings before subscribing a webhook: write the condition, hit this endpoint, see when it would have fired.
Plan access
Hobby and above.
Rate limit
Hobby 60/min · Pro 2,000/min · Scale 10,000/min.
Capacity
Counts against your saved-rule capacity until v1.5 introduces a separate cap.
Query parameters
stringrequiredStrategy slug.
stringrequiredTicker symbol.
stringrequiredBar resolution.
integerEarliest epoch ms (inclusive). Defaults to interval-dependent lookback.
integerLatest epoch ms (inclusive). Defaults to now.
stringOpaque cursor for pagination.
Status codes
200{ as_of, ticker, interval, count, next_cursor, bars: [{ t, v }, …] } — v is the boolean value at bar t (epoch ms).400Bad ticker or interval.
404Strategy or ticker not found.