List industries

Return every industry name used by company profiles and ticker resources in one response: no pagination. Industry values provide a more specific classification than sectors, and each industry includes the number of listed symbols we cover in it.

GET/v3.0.0/industries

Plan Access

Free

(Your plan)

Individual

$29/mo

Professional

$89/mo

Parameters

Response

Response fields

dataarray of objects

Array of every industry resource, ordered by name.

+ Show child attributes
idstring

Unique identifier for the industry, beginning with ind_. Derived deterministically from name, so it never changes for a given industry and is safe to store in your database.

objectstring

String representing the object's type, always v3.reference.industry for this resource.

namestring

Name of the industry, e.g. Telecommunications equipment. Industries are finer-grained than sectors and match the industry field on tickers and company profiles.

symbol_countnumber

Number of listed symbols we cover in this industry.

next_page_urlnullable

Always null: the endpoint returns the complete catalog in one response.

previous_page_urlnullable

Always null: the endpoint returns the complete catalog in one response.

Use industries with the broader sector catalog and canonical company profiles.

Request
curl "https://api.roic.ai/v3.0.0/industries?apikey=YOUR_API_KEY"
Response
200 OK
{
  "data": [
    {
      "id": "ind_iiyRwJtLkdW9g7VTS2hHeb",
      "object": "v3.reference.industry",
      "name": "Telecommunications equipment",
      "symbol_count": 800
    }
  ],
  "next_page_url": null,
  "previous_page_url": null
}