# inactive_reason

Why the ticker was marked inactive (e.g. delisted, stale data).

A text 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: Profile
- Category: Identifiers & reference
- Type: text
- Update cadence: 1 min · mkt hrs
- Universe: all tickers
- History: none — live row only, not historized (no as-of reads for this column)
- 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 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=inactive_reason IS NOT NULL" \
  -d "order=inactive_reason" -d "columns=inactive_reason" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:24:14.963Z",
 "query": {
  "q": "inactive_reason IS NOT NULL",
  "limit": 2,
  "order": "inactive_reason",
  "dir": "desc",
  "fields": [
   "inactive_reason"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "FGIIW",
   "name": "FG Imperii Acquisition Corp. Warrants",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.2169,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "inactive_reason": "snapshot_missing_consecutive"
  },
  {
   "ticker": "GPATU",
   "name": "GP-Act III Acquisition Corp. Units",
   "asset_class": "stocks",
   "asset_type": "UNIT",
   "price": 11.01,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "inactive_reason": "snapshot_missing_consecutive"
  }
 ]
}
```

## Related signals (Identifiers & reference)

- [active](https://tickerbot.io/docs/signals/active.md)
- [address_address1](https://tickerbot.io/docs/signals/address_address1.md)
- [address_city](https://tickerbot.io/docs/signals/address_city.md)
- [address_postal_code](https://tickerbot.io/docs/signals/address_postal_code.md)
- [address_state](https://tickerbot.io/docs/signals/address_state.md)
- [branding_icon_url](https://tickerbot.io/docs/signals/branding_icon_url.md)
- [branding_logo_url](https://tickerbot.io/docs/signals/branding_logo_url.md)
- [cik](https://tickerbot.io/docs/signals/cik.md)
- [composite_figi](https://tickerbot.io/docs/signals/composite_figi.md)
- [description](https://tickerbot.io/docs/signals/description.md)
- [homepage_url](https://tickerbot.io/docs/signals/homepage_url.md)
- [inactive_at](https://tickerbot.io/docs/signals/inactive_at.md)
- [list_date](https://tickerbot.io/docs/signals/list_date.md)
- [name](https://tickerbot.io/docs/signals/name.md)
- [phone_number](https://tickerbot.io/docs/signals/phone_number.md)

---

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