Endpoints · Strategies

Sparse fire events for a strategy on a ticker

GET/v2/strategies/{name}/{ticker}/events

Returns the condition-true intervals as `(start_t, end_t)` pairs — efficient when you only need fire moments rather than the full per-bar series.

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.

stringrequired

Strategy slug.

stringrequired

Ticker symbol.

integer

Earliest epoch ms.

integer

Latest epoch ms.

string

Opaque cursor for pagination.

200
{ as_of, ticker, count, next_cursor, events: [{ start_t, end_t, start_price, end_price }, …] }. end_t is null when the span is still open.