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.
/v3.0.0/sectorsPlan Access
Free
(Your plan)
Individual
$29/mo
Professional
$89/mo
Parameters
Response
Response fields
dataarray of objectsArray of every sector resource, ordered by name.
+ Show child attributes- Hide child attributes
idstringUnique 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.
objectstringString representing the object's type, always v3.reference.sector for this resource.
namestringName of the sector, e.g. Electronic technology. Values match the sector field on tickers and company profiles.
symbol_countnumberNumber of listed symbols we cover in this sector.
next_page_urlnullableAlways null: the endpoint returns the complete catalog in one response.
previous_page_urlnullableAlways null: the endpoint returns the complete catalog in one response.
Related endpoints
Combine sectors with industries and company profiles for classification views.
curl "https://api.roic.ai/v3.0.0/sectors?apikey=YOUR_API_KEY"{
"data": [
{
"id": "sec_gZ7j-mEHySZ8BNosDMTRg-",
"object": "v3.reference.sector",
"name": "Electronic technology",
"symbol_count": 7083
}
],
"next_page_url": null,
"previous_page_url": null
}