short_percent_of_float
Short interest as a fraction of the free float. 0.10 = 10% of float is short.
At a glance
| Type | numeric |
| Group | Fundamentals |
| Category | Short interest |
| Unit | % |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | recent only (forward-only from first computation) |
| Nullable | yes — NULL where not applicable |
Short positioning: readings, ratios, days-to-cover, and their flags.
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/short_percent_of_float" \
--data-urlencode "condition=> 32.3884" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:49.305Z",
"signal": "short_percent_of_float",
"condition": "> 32.3884",
"universe": null,
"count": 2,
"results": [
{
"ticker": "NG",
"name": "NovaGold Resources Inc.",
"value": 74200.7924
},
{
"ticker": "EGO",
"name": "Eldorado Gold Corporation",
"value": 30429.4169
}
]
}curl -G "https://api.tickerbot.io/v2/signals/short_percent_of_float" \
--data-urlencode "condition=> 32.3884" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "short_percent_of_float",
"condition": "> 32.3884",
"universe": null,
"count": 0,
"results": []
}curl -X POST "https://api.tickerbot.io/v2/signals/short_percent_of_float/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 32.3884", "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=short_percent_of_float IS NOT NULL" \
-d "order=short_percent_of_float" -d "columns=short_percent_of_float" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:52.122Z",
"query": {
"q": "short_percent_of_float IS NOT NULL",
"limit": 2,
"order": "short_percent_of_float",
"dir": "desc",
"fields": [
"short_percent_of_float"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "NG",
"name": "NovaGold Resources Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 7.864,
"day_change_pct": -0.0096,
"gap_pct": 0.0126,
"relative_volume": null,
"market_cap": 3483918075,
"short_percent_of_float": 74200.7924
},
{
"ticker": "EGO",
"name": "Eldorado Gold Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 40.54,
"day_change_pct": 0.0204,
"gap_pct": 0.0111,
"relative_volume": null,
"market_cap": 10361994490,
"short_percent_of_float": 30429.4169
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=short_percent_of_float IS NOT NULL" \
-d "order=short_percent_of_float" -d "columns=short_percent_of_float" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "short_percent_of_float IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "short_percent_of_float",
"dir": "desc",
"fields": [
"short_percent_of_float"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 0,
"results": []
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "short_percent_of_float > 32.3884", "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,short_percent_of_float" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:54.590Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"short_percent_of_float"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"short_percent_of_float": 1.0838
},
{
"t": "2026-08-13",
"close": 305.26,
"short_percent_of_float": 1.0473
},
{
"t": "2026-08-14",
"close": 305.93,
"short_percent_of_float": 1.0473
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"short_percent_of_float": 1.2439
},
{
"t": "2026-08-13",
"close": 496.88,
"short_percent_of_float": 1.0949
},
{
"t": "2026-08-14",
"close": 495.4,
"short_percent_of_float": 1.0949
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.