free_float_pct
Percent of shares outstanding actually available for trading (excludes insider / restricted holdings).
Swap YOUR_KEY for a key from /dashboard/keys. Responses are real captures from 2026-09-08, trimmed.
Every ticker matching this signal /v2/signals/{signal}
Live — every ticker with free_float_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/free_float_pct" \
--data-urlencode "condition=> 100" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:11.755Z",
"signal": "free_float_pct",
"condition": "> 100",
"universe": null,
"count": 0,
"results": []
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/free_float_pct" \
--data-urlencode "condition=> 100" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "free_float_pct",
"condition": "> 100",
"universe": null,
"count": 0,
"results": []
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/free_float_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 100", "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.
The whole market, filtered on it /v2/scan
Live — the whole market, ranked by this column
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "free_float_pct IS NOT NULL", "order": "free_float_pct", "columns": "free_float_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:16.351Z",
"query": {
"q": "free_float_pct IS NOT NULL",
"limit": 2,
"order": "free_float_pct",
"dir": "desc",
"fields": [
"free_float_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "ABBV",
"name": "ABBVIE INC.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 256.29,
"change_1d_pct": -1.5064755389877251,
"gap_pct": -0.86,
"relative_volume": null,
"market_cap": 453194898911,
"free_float_pct": 100
},
{
"ticker": "ACN",
"name": "Accenture PLC",
"asset_class": "stocks",
"asset_type": "CS",
"price": 186.559,
"change_1d_pct": -3.3973695111847593,
"gap_pct": -0.58,
"relative_volume": null,
"market_cap": 114261830592,
"free_float_pct": 100
}
]
}As-of — the same scan at a past date
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "free_float_pct IS NOT NULL", "order": "free_float_pct", "columns": "free_float_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "free_float_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "free_float_pct",
"dir": "desc",
"fields": [
"free_float_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "QMMM",
"name": "QMMM Holdings Limited Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": null,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"free_float_pct": 100
},
{
"ticker": "OST",
"name": "Ostin Technology Group Co., Ltd. Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": null,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"free_float_pct": 99.8
}
]
}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": "free_float_pct > 100", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Its history /v2/series
History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,free_float_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:19.420Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"free_float_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"free_float_pct": 92.1
},
{
"t": "2026-09-03",
"close": 328.21,
"free_float_pct": 92.1
},
{
"t": "2026-09-04",
"close": 321.183,
"free_float_pct": 92.1
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"free_float_pct": 100
},
{
"t": "2026-09-03",
"close": 510.12,
"free_float_pct": 100
},
{
"t": "2026-09-04",
"close": 501.241,
"free_float_pct": 100
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.