Endpoints
All endpoints
Every page of the reference, by family, in the rail’s order. The story of what each family is for is on the Introduction; the exhaustive machine-readable contract, including utility endpoints, is the OpenAPI spec.
Tickers
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | The catalog: every tracked symbol with its identity, alphabetical and paginated. |
| GET | https://api.tickerbot.io/ | The full current state of one ticker, or up to 50 at once with the list in the path. |
| POST | https://api.tickerbot.io/ | Create a webhook that fires when this ticker matches a query. |
| GET | https://api.tickerbot.io/ | How much data a ticker has. Spans per resolution, measured depth per signal. |
Signals
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | Built-in signals plus your custom signals, each tagged with `kind`. |
| GET | https://api.tickerbot.io/ | Every ticker matching a signal right now. |
| POST | https://api.tickerbot.io/ | Create a webhook that fires when any ticker matches this signal. |
| POST | https://api.tickerbot.io/ | Save a named boolean SQL predicate you can reference like a built-in signal. |
| PATCH | https://api.tickerbot.io/ | Edit the expression or description of one of your custom signals. |
| DELETE | https://api.tickerbot.io/ | Remove a custom signal. Refused by default if anything references it. |
Scan
| Method | Path | Summary |
|---|---|---|
| POST | https://api.tickerbot.io/ | Run a SQL WHERE against the current universe. |
| POST | https://api.tickerbot.io/ | Create a webhook that fires when a ticker matches a WHERE clause. |
Series
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | Any signals for any tickers on one aligned time grid. |
Bars
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | OHLCV bars from 1-second to monthly, in a compact array shape. |
Events
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | One timeline over every event log: earnings, dividends, splits, insider transactions, analyst actions, plus opt-in signal firings and news. |
| GET | https://api.tickerbot.io/ | Quarterly earnings reports, timestamped at the report date. Reported vs estimated EPS and the surprise. |
| GET | https://api.tickerbot.io/ | Cash-dividend declarations. Doubles as a dividend calendar. |
| GET | https://api.tickerbot.io/ | Stock splits and reverse splits, timestamped at the execution date. |
| GET | https://api.tickerbot.io/ | Officer and director trades (Form 4 activity). |
| GET | https://api.tickerbot.io/ | Upgrades, downgrades, initiations, and price-target changes; hourly, 24/7. |
| GET | https://api.tickerbot.io/ | Headlines as events, opt-in. /v2/news is the search surface. |
| GET | https://api.tickerbot.io/ | Boolean flips as enter/exit point-events, opt-in. |
| POST | https://api.tickerbot.io/ | Webhook on new earnings, dividends, splits, insider filings, or analyst actions. |
News
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | SQL query over the news_article archive. Returns articles or aggregate rollups. |
ETF
| Method | Path | Summary |
|---|---|---|
| GET | https://api.tickerbot.io/ | Constituent holdings of an ETF, weight-ranked. |
| GET | https://api.tickerbot.io/ | Sector allocation of an ETF, weight-ranked. |
Universes
| Method | Path | Summary |
|---|---|---|
| POST | https://api.tickerbot.io/ | Create a universe. |
| GET | https://api.tickerbot.io/ | Fetch a single universe. |
| GET | https://api.tickerbot.io/ | Get all universes: yours, the built-in system ones, or both. |
| GET | https://api.tickerbot.io/ | List system universes (top_10, top_100). |
| PATCH | https://api.tickerbot.io/ | Update a universe. |
| DELETE | https://api.tickerbot.io/ | Delete a universe. |
Webhooks
| Method | Path | Summary |
|---|---|---|
| POST | https://api.tickerbot.io/ | Canonical create: a webhook is a trigger plus a delivery. |
| GET | https://api.tickerbot.io/ | Fetch one webhook subscription. |
| GET | https://api.tickerbot.io/ | List every webhook subscription on this account. |
| PATCH | https://api.tickerbot.io/ | Edit a webhook subscription in place. |
| DELETE | https://api.tickerbot.io/ | Delete a webhook subscription. |
| POST | https://api.tickerbot.io/ | Re-enable a disabled webhook. |
| POST | https://api.tickerbot.io/ | Send a real-shape test POST to your endpoint, instantly. |
| GET | https://api.tickerbot.io/ | Inspect recent deliveries for a webhook. |
Websockets
| Method | Path | Summary |
|---|---|---|
| WSS | https://api.tickerbot.io/ | Hold a socket open and receive each subscribed ticker's freshly-computed row on every refresh. |
| GET | https://api.tickerbot.io/ | Current WebSocket streaming consumption vs your account cap. |