Concepts › Signals › Profile › Classification
sic_code
SIC code — the SEC's Standard Industrial Classification for the company's industry.
Watch this signal live on real tickers: Open in Explore →
At a glance
| Type | text |
| Group | Profile |
| Category | Classification |
| Update cadence | post-close daily |
| Universe | all tickers |
| History | none — live row only, not historized (no as-of reads) |
| Nullable | yes — NULL where not applicable |
Categorical facts: sector, industry, SIC, exchange, country, currency, asset class and sub-class.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. 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. Docs →
Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=sic_code IS NOT NULL" \
-d "order=sic_code" -d "columns=sic_code" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:25:50.582Z",
"query": {
"q": "sic_code IS NOT NULL",
"limit": 2,
"order": "sic_code",
"dir": "desc",
"fields": [
"sic_code"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "VVX",
"name": "V2X, Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 82.665,
"day_change_pct": -0.004,
"gap_pct": -0.0013,
"relative_volume": 0.5431,
"market_cap": 2601664714,
"sic_code": "8744"
},
{
"ticker": "ACCS",
"name": "ACCESS Newswire Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 5.106,
"day_change_pct": 0.0274,
"gap_pct": 0.0402,
"relative_volume": null,
"market_cap": 19156884,
"sic_code": "8742"
}
]
}Same grammar on scan and webhooks. This column is live-tense only — it isn't historized, so ?asof= reads and series pulls don't carry it.