Dashboard

List industry groups (deprecated)

GET/api/symbols/industry-groups

Free Starter Stock ETF Pro

Deprecated. Use the SFIC-based /api/symbols/sectors and /api/symbols/industries taxonomy instead. This endpoint still returns the legacy set of 8 high-value industry group definitions used by StockFit for cross-company comparison within specialized sectors. These groups appear as industryGroup in symbol profiles.

Get API key Try it live in the API explorer

Query parameters

This endpoint takes no query parameters.

Example request

curl 'https://api.stockfit.io/v1/api/symbols/industry-groups' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

List of industry group definitions

Response schema

array of:
  • id string

    Machine-readable industry group identifier

  • label string

    Human-readable industry group label (matches `industryGroup` field in symbol profiles)

Example response

[
  {
    "id": "semiconductor",
    "label": "Semiconductors"
  }
]

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}