bid
Best bid from the consolidated NBBO at the most recent snapshot tick.
At a glance
| Type | numeric |
| Group | Price |
| Category | Trades & quotes |
| Unit | USD |
| Update cadence | 1 min · mkt hrs |
| Universe | all tickers |
| History | intraday state only — as-of by timestamp at interval=1h |
| Nullable | yes — NULL where not applicable |
Last trade and the current quote: price, bid/ask, and depth.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl -G "https://api.tickerbot.io/v2/signals/bid" \
--data-urlencode "condition=> 430.26" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:56.202Z",
"signal": "bid",
"condition": "> 430.26",
"universe": null,
"count": 2,
"results": [
{
"ticker": "BRK.A",
"name": "Berkshire Hathaway Inc.",
"value": 746847.81
},
{
"ticker": "NVR",
"name": "NVR, Inc.",
"value": 6215.87
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/bid/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 430.26", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook — the same shape as GET /v2/webhooks/{id}, plus a one-time signing_secret for HMAC verification.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=bid IS NOT NULL" \
-d "order=bid" -d "columns=bid" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:56.463Z",
"query": {
"q": "bid IS NOT NULL",
"limit": 2,
"order": "bid",
"dir": "desc",
"fields": [
"bid"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "BRK.A",
"name": "Berkshire Hathaway Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 747658.72,
"day_change_pct": -0.0105,
"gap_pct": 0,
"relative_volume": null,
"market_cap": 1078304184071,
"bid": 746847.81
},
{
"ticker": "NVR",
"name": "NVR, Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 6241,
"day_change_pct": -0.0106,
"gap_pct": -0.0037,
"relative_volume": null,
"market_cap": 16809750339,
"bid": 6215.87
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=bid IS NOT NULL" \
-d "order=bid" -d "columns=bid" \
-d "asof=2026-05-20T17:45:00Z" -d "interval=1h" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20T17:45:00Z",
"query": {
"q": "bid IS NOT NULL",
"asof": "2026-05-20T17:45:00Z",
"interval": "1h",
"limit": 2,
"order": "bid",
"dir": "desc",
"fields": [
"bid"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "USBpA",
"name": "U.S. Bancorp Depositary Shares (each representing a 1/100th interest in a share of Series A Non-Cumulative Preferred Stock)",
"asset_class": "stocks",
"asset_type": "PFD",
"price": 775.94,
"day_change_pct": -0.0017,
"gap_pct": -0.001,
"relative_volume": 0.082,
"market_cap": null,
"bid": 771.5
},
{
"ticker": "WSO.B",
"name": "Watsco, Inc. Class B",
"asset_class": "stocks",
"asset_type": "CS",
"price": 404.565,
"day_change_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"bid": 388.74
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "bid > 430.26", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Same grammar on scan and webhooks. This column lives in intraday state: ?asof= reads carry it at interval=1h with a timestamp, not at daily resolution.