short_float_pct
Short interest as a fraction of the free float. 0.10 = 10% of float is short.
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 short_float_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/short_float_pct" \
--data-urlencode "condition=> 31.7918" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:11:20.391Z",
"signal": "short_float_pct",
"condition": "> 31.7918",
"universe": null,
"count": 2,
"results": [
{
"ticker": "NG",
"name": "NovaGold Resources Inc.",
"value": 77677.6804
},
{
"ticker": "EGO",
"name": "Eldorado Gold Corporation",
"value": 32103.2497
}
]
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/short_float_pct" \
--data-urlencode "condition=> 31.7918" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "short_float_pct",
"condition": "> 31.7918",
"universe": null,
"count": 0,
"results": []
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/short_float_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 31.7918", "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": "short_float_pct IS NOT NULL", "order": "short_float_pct", "columns": "short_float_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:11:31.648Z",
"query": {
"q": "short_float_pct IS NOT NULL",
"limit": 2,
"order": "short_float_pct",
"dir": "desc",
"fields": [
"short_float_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "NG",
"name": "NovaGold Resources Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 8.08,
"change_1d_pct": -2.8846153846153872,
"gap_pct": -3,
"relative_volume": null,
"market_cap": 3540959554,
"short_float_pct": 77677.6804
},
{
"ticker": "EGO",
"name": "Eldorado Gold Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 43.002,
"change_1d_pct": -1.7994976021922737,
"gap_pct": -2.44,
"relative_volume": null,
"market_cap": 11220060482,
"short_float_pct": 32103.2497
}
]
}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": "short_float_pct IS NOT NULL", "order": "short_float_pct", "columns": "short_float_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "short_float_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "short_float_pct",
"dir": "desc",
"fields": [
"short_float_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "NUTR",
"name": "Nusatrip Incorporated Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": null,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"short_float_pct": 27.535
},
{
"ticker": "MCTA",
"name": "Charming Medical 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,
"short_float_pct": 15.0138
}
]
}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": "short_float_pct > 31.7918", "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,short_float_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:11:36.697Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"short_float_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"short_float_pct": 0.8603
},
{
"t": "2026-09-03",
"close": 328.21,
"short_float_pct": 0.8603
},
{
"t": "2026-09-04",
"close": 321.183,
"short_float_pct": 0.8603
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"short_float_pct": 0.9234
},
{
"t": "2026-09-03",
"close": 510.12,
"short_float_pct": 0.9234
},
{
"t": "2026-09-04",
"close": 501.241,
"short_float_pct": 0.9234
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.