volume_today
Shares traded so far today.
At a glance
| Type | bigint |
| Group | Volume |
| Category | Volume & averages |
| Unit | shares |
| Update cadence | 1 min · mkt hrs |
| Intervals | 1m/1h/1d |
| Universe | all tickers |
| History | full · since 2003 |
| Nullable | yes — NULL where not applicable |
Absolute trading quantities: today's and prior volumes, dollar volume, averages, bar-level counts.
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/volume_today" \
--data-urlencode "condition=> 20697876" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:26:05.195Z",
"signal": "volume_today",
"condition": "> 20697876",
"universe": null,
"count": 2,
"results": [
{
"ticker": "OSRH",
"name": "OSR Health, Inc. Common Stock",
"value": 359603731
},
{
"ticker": "SNYR",
"name": "Synergy CHC Corp. Common Stock",
"value": 181178388
}
]
}curl -G "https://api.tickerbot.io/v2/signals/volume_today" \
--data-urlencode "condition=> 20697876" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "volume_today",
"condition": "> 20697876",
"universe": null,
"count": 2,
"results": [
{
"ticker": "TZA",
"name": "Direxion Daily Small Cap Bear 3x ETF",
"value": 385639130
},
{
"ticker": "SOXS",
"name": "Direxion Daily Semiconductor Bear 3X ETF",
"value": 282843434
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/volume_today/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 20697876", "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=volume_today IS NOT NULL" \
-d "order=volume_today" -d "columns=volume_today" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:26:07.276Z",
"query": {
"q": "volume_today IS NOT NULL",
"limit": 2,
"order": "volume_today",
"dir": "desc",
"fields": [
"volume_today"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "OSRH",
"name": "OSR Health, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.549,
"day_change_pct": 0.7373,
"gap_pct": 0.0981,
"relative_volume": null,
"market_cap": 11097506,
"volume_today": 359603731
},
{
"ticker": "SNYR",
"name": "Synergy CHC Corp. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.117,
"day_change_pct": 0.1735,
"gap_pct": -0.0562,
"relative_volume": null,
"market_cap": 1485518,
"volume_today": 181178388
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=volume_today IS NOT NULL" \
-d "order=volume_today" -d "columns=volume_today" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "volume_today IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "volume_today",
"dir": "desc",
"fields": [
"volume_today"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TZA",
"name": "Direxion Daily Small Cap Bear 3x ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 4.83,
"day_change_pct": -7.293666026871399,
"gap_pct": -2.1113243761996223,
"relative_volume": 1.8009887796296526,
"market_cap": null,
"volume_today": 385639130
},
{
"ticker": "SOXS",
"name": "Direxion Daily Semiconductor Bear 3X ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 8.54,
"day_change_pct": -13.997985901309171,
"gap_pct": -6.344410876132921,
"relative_volume": 1.2931886816542713,
"market_cap": null,
"volume_today": 282843434
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "volume_today > 20697876", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Use series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,volume_today" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:26:09.270Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"volume_today"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"volume_today": 33240702
},
{
"t": "2026-08-13",
"close": 305.26,
"volume_today": 30341954
},
{
"t": "2026-08-14",
"close": 305.93,
"volume_today": 20248849
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"volume_today": 19620534
},
{
"t": "2026-08-13",
"close": 496.88,
"volume_today": 16757819
},
{
"t": "2026-08-14",
"close": 495.4,
"volume_today": 10983602
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.