View as markdown

institutions_pct

Percent of shares held by institutional investors (mutual funds, ETFs, pensions).

metadata
typenumeric
unit%
cadencepost-close daily
intervals1d
universeall tickers
historyrecent only (forward-only from first computation)
nullableyes — NULL where not applicable

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 institutions_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/institutions_pct" \
  --data-urlencode "condition=> 119.525" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:52.230Z",
 "signal": "institutions_pct",
 "condition": "> 119.525",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "YJ",
   "name": "Yunji Inc. American Depository Shares",
   "value": 8462.665
  },
  {
   "ticker": "FWAC",
   "name": "Futurewave Acquisition Corporation Ordinary Shares",
   "value": 2007.28
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/institutions_pct" \
  --data-urlencode "condition=> 119.525" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "institutions_pct",
 "condition": "> 119.525",
 "universe": null,
 "count": 0,
 "results": []
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/institutions_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 119.525", "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": "institutions_pct IS NOT NULL", "order": "institutions_pct", "columns": "institutions_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:56.144Z",
 "query": {
  "q": "institutions_pct IS NOT NULL",
  "limit": 2,
  "order": "institutions_pct",
  "dir": "desc",
  "fields": [
   "institutions_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "YJ",
   "name": "Yunji Inc. American Depository Shares",
   "asset_class": "stocks",
   "asset_type": "ADRC",
   "price": 2.035,
   "change_1d_pct": -4.4600938967136035,
   "gap_pct": 1.88,
   "relative_volume": null,
   "market_cap": 9998846,
   "institutions_pct": 8462.665
  },
  {
   "ticker": "FWAC",
   "name": "Futurewave Acquisition Corporation Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 9.935,
   "change_1d_pct": 0.1512096774193606,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": 127238206,
   "institutions_pct": 2007.28
  }
 ]
}
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": "institutions_pct IS NOT NULL", "order": "institutions_pct", "columns": "institutions_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "institutions_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "institutions_pct",
  "dir": "desc",
  "fields": [
   "institutions_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "SVA",
   "name": "Sinovac Biotech, Ltd",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": null,
   "change_1d_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "institutions_pct": 32.025
  },
  {
   "ticker": "SRL",
   "name": "Scully Royalty Ltd. Common Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 6.125,
   "change_1d_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "institutions_pct": 4.27
  }
 ]
}
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": "institutions_pct > 119.525", "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,institutions_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:57.888Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "institutions_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "institutions_pct": 66.396
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "institutions_pct": 66.396
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "institutions_pct": 66.373
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "institutions_pct": 75.882
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "institutions_pct": 75.884
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "institutions_pct": 75.858
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Share structure & ownership