# asset_class

Asset class of the ticker: stocks, rates, crypto, or fx.

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: Classification
- Type: text
- Update cadence: post-close daily
- Universe: all tickers
- History: none — live row only, not historized (no as-of reads for this column)

## 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=asset_class IS NOT NULL" \
  -d "order=asset_class" -d "columns=asset_class" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:22:45.057Z",
 "query": {
  "q": "asset_class IS NOT NULL",
  "limit": 2,
  "order": "asset_class",
  "dir": "desc",
  "fields": [
   "asset_class"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "A",
   "name": "Agilent Technologies Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 147.295,
   "day_change_pct": -0.0083,
   "gap_pct": -0.0048,
   "relative_volume": null,
   "market_cap": 41949616642
  },
  {
   "ticker": "AA",
   "name": "Alcoa Corporation",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 51.857,
   "day_change_pct": 0.0376,
   "gap_pct": 0.0044,
   "relative_volume": null,
   "market_cap": 13190194061
  }
 ]
}
```

## Related signals (Classification)

- [asset_type](https://tickerbot.io/docs/signals/asset_type.md)
- [country](https://tickerbot.io/docs/signals/country.md)
- [currency_name](https://tickerbot.io/docs/signals/currency_name.md)
- [exchange](https://tickerbot.io/docs/signals/exchange.md)
- [exchange_mic](https://tickerbot.io/docs/signals/exchange_mic.md)
- [industry](https://tickerbot.io/docs/signals/industry.md)
- [sector](https://tickerbot.io/docs/signals/sector.md)
- [sic_code](https://tickerbot.io/docs/signals/sic_code.md)
- [sic_description](https://tickerbot.io/docs/signals/sic_description.md)
- [ticker_category](https://tickerbot.io/docs/signals/ticker_category.md)

---

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