List sectors

Return every sector name used by company profiles and ticker resources in one response: no pagination. Each sector includes the number of listed symbols we cover in it. Use the catalog to build exact filter choices in your application.

GET/v3.0.0/sectors

Plan Access

Free

(Your plan)

Individual

$29/mo

Professional

$89/mo

Parameters

Response

Response fields

dataarray of objects

Array of every sector resource, ordered by name.

+ Show child attributes
idstring

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

objectstring

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

namestring

Name of the sector, e.g. Electronic technology. Values match the sector field on tickers and company profiles.

symbol_countnumber

Number of listed symbols we cover in this sector.

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.

Combine sectors with industries and company profiles for classification views.

Request
curl "https://api.roic.ai/v3.0.0/sectors?apikey=YOUR_API_KEY"
Response
200 OK
{
  "data": [
    {
      "id": "sec_gZ7j-mEHySZ8BNosDMTRg-",
      "object": "v3.reference.sector",
      "name": "Electronic technology",
      "symbol_count": 7083
    }
  ],
  "next_page_url": null,
  "previous_page_url": null
}