Dashboard

List industries

GET/api/symbols/industries

Free Starter Stock ETF Pro

Returns all distinct industries with the number of stocks in each. Industries come from SFIC (StockFit Industry Classification), our proprietary taxonomy. Each company is routed to a fine-grained industry bucket that produces cleaner peer groups than raw SEC SIC codes.

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/industries' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

List of industries

Response schema

array of:
  • industry string

    SFIC industry name

  • symbolCount integer

    Number of stocks in this industry

Example response

[
  {
    "industry": "Pharmaceuticals",
    "symbolCount": 42
  }
]

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}