insiders_pct
Percent of shares held by company insiders (executives, directors, founders).
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 insiders_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/insiders_pct" \
--data-urlencode "condition=> 82.084" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:52.068Z",
"signal": "insiders_pct",
"condition": "> 82.084",
"universe": null,
"count": 2,
"results": [
{
"ticker": "LOCL",
"name": "Local Bounti Corporation",
"value": 99.579
},
{
"ticker": "WAFU",
"name": "Wah Fu Education Group Limited Ordinary Shares",
"value": 98.955
}
]
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/insiders_pct" \
--data-urlencode "condition=> 82.084" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "insiders_pct",
"condition": "> 82.084",
"universe": null,
"count": 2,
"results": [
{
"ticker": "UCFI",
"name": "CN Healthy Food Tech Group Corp. Common Stock",
"value": 97.167
},
{
"ticker": "PTNM",
"name": "Pitanium Limited Class A Ordinary shares",
"value": 83.281
}
]
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/insiders_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 82.084", "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": "insiders_pct IS NOT NULL", "order": "insiders_pct", "columns": "insiders_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:55.431Z",
"query": {
"q": "insiders_pct IS NOT NULL",
"limit": 2,
"order": "insiders_pct",
"dir": "desc",
"fields": [
"insiders_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "LOCL",
"name": "Local Bounti Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 1.12,
"change_1d_pct": 1.8181818181818195,
"gap_pct": 5,
"relative_volume": null,
"market_cap": 26185733,
"insiders_pct": 99.579
},
{
"ticker": "WAFU",
"name": "Wah Fu Education Group Limited Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 1.355,
"change_1d_pct": -1.0948905109489142,
"gap_pct": 3.28,
"relative_volume": null,
"market_cap": 5998360,
"insiders_pct": 98.955
}
]
}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": "insiders_pct IS NOT NULL", "order": "insiders_pct", "columns": "insiders_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "insiders_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "insiders_pct",
"dir": "desc",
"fields": [
"insiders_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "UCFI",
"name": "CN Healthy Food Tech Group Corp. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": null,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"insiders_pct": 97.167
},
{
"ticker": "PTNM",
"name": "Pitanium 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,
"insiders_pct": 83.281
}
]
}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": "insiders_pct > 82.084", "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,insiders_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:57.554Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"insiders_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"insiders_pct": 1.648
},
{
"t": "2026-09-03",
"close": 328.21,
"insiders_pct": 1.648
},
{
"t": "2026-09-04",
"close": 321.183,
"insiders_pct": 1.648
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"insiders_pct": 0.09
},
{
"t": "2026-09-03",
"close": 510.12,
"insiders_pct": 0.09
},
{
"t": "2026-09-04",
"close": 501.241,
"insiders_pct": 0.092
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.