ask_size
Round lots at the ask. Raw count — NOT multiplied by 100.
At a glance
| Type | integer |
| Group | Price |
| Category | Trades & quotes |
| Unit | shares |
| 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/ask_size" \
--data-urlencode "condition=> 7600" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:43.592Z",
"signal": "ask_size",
"condition": "> 7600",
"universe": null,
"count": 2,
"results": [
{
"ticker": "SHY",
"name": "iShares 1-3 Year Treasury Bond ETF",
"value": 45000
},
{
"ticker": "JOB",
"name": "GEE Group Inc.",
"value": 43700
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/ask_size/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 7600", "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=ask_size IS NOT NULL" \
-d "order=ask_size" -d "columns=ask_size" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:43.820Z",
"query": {
"q": "ask_size IS NOT NULL",
"limit": 2,
"order": "ask_size",
"dir": "desc",
"fields": [
"ask_size"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "SHY",
"name": "iShares 1-3 Year Treasury Bond ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 82.016,
"day_change_pct": 0.0002,
"gap_pct": 0.0001,
"relative_volume": 0.7176,
"market_cap": null,
"ask_size": 45000
},
{
"ticker": "JOB",
"name": "GEE Group Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.237,
"day_change_pct": -0.0342,
"gap_pct": -0.031,
"relative_volume": null,
"market_cap": 26962266,
"ask_size": 43700
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=ask_size IS NOT NULL" \
-d "order=ask_size" -d "columns=ask_size" \
-d "asof=2026-05-20T17:45:00Z" -d "interval=1h" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20T17:45:00Z",
"query": {
"q": "ask_size IS NOT NULL",
"asof": "2026-05-20T17:45:00Z",
"interval": "1h",
"limit": 2,
"order": "ask_size",
"dir": "desc",
"fields": [
"ask_size"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "QREDr",
"name": "QuasarEdge Acquisition Corporation Rights to receive one-fourth (1/4) of one Ordinary Share",
"asset_class": "stocks",
"asset_type": "RIGHT",
"price": 0.22,
"day_change_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"ask_size": 42100
},
{
"ticker": "CELGr",
"name": "Bristol-Myers Squibb Company Contingent Value Rights",
"asset_class": "stocks",
"asset_type": "RIGHT",
"price": 0.0952,
"day_change_pct": -0.1185,
"gap_pct": null,
"relative_volume": 0.9351,
"market_cap": null,
"ask_size": 35800
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "ask_size > 7600", "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.