# short_interest

Raw shares-shorted count as last reported (FINRA bi-monthly). Pair with `short_interest_settlement_date` (profile.ts) for the as-of date.

A bigint signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Fundamentals
- Category: Short interest
- Type: bigint
- Unit: shares
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: recent only (forward-only from first computation)
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with short_interest above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/short_interest" \
  --data-urlencode "condition=> 63394520" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:25:47.885Z",
 "signal": "short_interest",
 "condition": "> 63394520",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "PLUG",
   "name": "Plug Power Inc.",
   "value": 294021600
  },
  {
   "ticker": "NVDA",
   "name": "Nvidia Corp",
   "value": 292667375
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
curl -G "https://api.tickerbot.io/v2/signals/short_interest" \
  --data-urlencode "condition=> 63394520" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-05-20",
 "signal": "short_interest",
 "condition": "> 63394520",
 "universe": null,
 "count": 0,
 "results": []
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/short_interest/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 63394520", "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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=short_interest IS NOT NULL" \
  -d "order=short_interest" -d "columns=short_interest" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:25:51.144Z",
 "query": {
  "q": "short_interest IS NOT NULL",
  "limit": 2,
  "order": "short_interest",
  "dir": "desc",
  "fields": [
   "short_interest"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "PLUG",
   "name": "Plug Power Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 2.255,
   "day_change_pct": -0.028,
   "gap_pct": -0.0043,
   "relative_volume": null,
   "market_cap": 3241493044,
   "short_interest": 294021600
  },
  {
   "ticker": "NVDA",
   "name": "Nvidia Corp",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 225.125,
   "day_change_pct": -0.0002,
   "gap_pct": 0.0036,
   "relative_volume": null,
   "market_cap": 5453600360000,
   "short_interest": 292667375
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=short_interest IS NOT NULL" \
  -d "order=short_interest" -d "columns=short_interest" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "short_interest IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "short_interest",
  "dir": "desc",
  "fields": [
   "short_interest"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 0,
 "results": []
}
```

#### Subscribe — webhook on a market-wide condition

```bash
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "short_interest > 63394520", "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. (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,short_interest" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:25:53.303Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "short_interest"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "short_interest": 146547784
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "short_interest": 141606163
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "short_interest": 141606163
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "short_interest": 92373474
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "short_interest": 81311791
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "short_interest": 81311791
   }
  ]
 }
}
```

## Related signals (Short interest)

- [days_to_cover](https://tickerbot.io/docs/signals/days_to_cover.md)
- [high_short_interest](https://tickerbot.io/docs/signals/high_short_interest.md)
- [short_interest_settlement_date](https://tickerbot.io/docs/signals/short_interest_settlement_date.md)
- [short_percent_of_float](https://tickerbot.io/docs/signals/short_percent_of_float.md)
- [short_volume_ratio](https://tickerbot.io/docs/signals/short_volume_ratio.md)
- [short_volume_spike](https://tickerbot.io/docs/signals/short_volume_spike.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=short_interest · HTML: https://tickerbot.io/docs/signals/short_interest/
