Endpoints
Scan
A universe-wide query. Pass a SQL WHERE clause as q; the server returns every ticker that matches right now, or pass ?asof=YYYY-MM-DD to evaluate the same clause against a past trading day. Accepts ?universe= as a scoping shortcut. Subscribe the same q via POST /v2/scan/subscribe and we POST your endpoint each time a new ticker enters the match set.
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/v2/scan | Run a SQL WHERE against the current universe. |
| POST | https://api.tickerbot.io/v2/scan | Same as GET /v2/scan, with `q` in the body. |
| GET | https://api.tickerbot.io/v2/scan | Run a SQL WHERE against the close of a past trading day — same endpoint as live, with ?asof=. |