# sector

GICS sector. One of: Technology, Healthcare, Financials, Consumer Discretionary, Consumer Staples, Energy, Industrials, Materials, Utilities, Real Estate, Communication Services.

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

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

```json
{
 "as_of": "2026-08-18T00:25:44.345Z",
 "query": {
  "q": "sector IS NOT NULL",
  "limit": 2,
  "order": "sector",
  "dir": "desc",
  "fields": [
   "sector"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "AEE",
   "name": "Ameren Corporation",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 109.51,
   "day_change_pct": -0.0021,
   "gap_pct": -0.0046,
   "relative_volume": null,
   "market_cap": 30380778364,
   "sector": "Utilities"
  },
  {
   "ticker": "AEP",
   "name": "American Electric Power Company, Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 126.6,
   "day_change_pct": 0.008,
   "gap_pct": -0.0057,
   "relative_volume": null,
   "market_cap": 68376307411,
   "sector": "Utilities"
  }
 ]
}
```

## Related signals (Classification)

- [asset_class](https://tickerbot.io/docs/signals/asset_class.md)
- [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)
- [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=sector · HTML: https://tickerbot.io/docs/signals/sector/
