View as markdown
Concepts › SignalsPrice Trades & quotes

bid_size

Round lots at the bid. Raw count — NOT multiplied by 100. Multiply by 100 to get share count.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typeinteger
GroupPrice
CategoryTrades & quotes
Unitshares
Update cadence1 min · mkt hrs
Universeall tickers
Historyintraday state only — as-of by timestamp at interval=1h
Nullableyes — 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 →

Live — every ticker with bid_size above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/bid_size" \
  --data-urlencode "condition=> 8000" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:22:56.270Z",
 "signal": "bid_size",
 "condition": "> 8000",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ALUB.WS",
   "name": "Alussa Energy Acquisition Corp. II Redeemable Warrants, each whole warrant exercisable for one Class A ordinary share at an exercise price of $11.50 per share",
   "value": 100000
  },
  {
   "ticker": "BIII.WS",
   "name": "Black Spade Acquisition III Co Redeemable warrants, each whole warrant exercisable for one Class A ordinary share at an exercise price of $11.50",
   "value": 100000
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/bid_size/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 8000", "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 →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=bid_size IS NOT NULL" \
  -d "order=bid_size" -d "columns=bid_size" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:22:56.519Z",
 "query": {
  "q": "bid_size IS NOT NULL",
  "limit": 2,
  "order": "bid_size",
  "dir": "desc",
  "fields": [
   "bid_size"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "ALUB.WS",
   "name": "Alussa Energy Acquisition Corp. II Redeemable Warrants, each whole warrant exercisable for one Class A ordinary share at an exercise price of $11.50 per share",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.415,
   "day_change_pct": -0.0349,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "bid_size": 100000
  },
  {
   "ticker": "BIII.WS",
   "name": "Black Spade Acquisition III Co Redeemable warrants, each whole warrant exercisable for one Class A ordinary share at an exercise price of $11.50",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.36,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "bid_size": 100000
  }
 ]
}
As-of — a past intraday moment (hourly state)
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=bid_size IS NOT NULL" \
  -d "order=bid_size" -d "columns=bid_size" \
  -d "asof=2026-05-20T17:45:00Z" -d "interval=1h" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20T17:45:00Z",
 "query": {
  "q": "bid_size IS NOT NULL",
  "asof": "2026-05-20T17:45:00Z",
  "interval": "1h",
  "limit": 2,
  "order": "bid_size",
  "dir": "desc",
  "fields": [
   "bid_size"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "JACS",
   "name": "Jackson Acquisition Company II",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 10.6,
   "day_change_pct": -0.0009,
   "gap_pct": null,
   "relative_volume": 0.1756,
   "market_cap": null,
   "bid_size": 104800
  },
  {
   "ticker": "LZM.WS",
   "name": "Lifezone Metals Limited Warrants, each whole warrant exercisable for one Ordinary Share at an exercise price of $11.50",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.615,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": 0,
   "market_cap": null,
   "bid_size": 65100
  }
 ]
}
Subscribe — webhook on a market-wide condition
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "bid_size > 8000", "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.

Related signals — Trades & quotes