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.
/v3.0.0/industriesPlan Access
Free
(Your plan)
Individual
$29/mo
Professional
$89/mo
Parameters
Response
Response fields
dataarray of objectsArray of every industry resource, ordered by name.
+ Show child attributes- Hide child attributes
idstringUnique 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.
objectstringString representing the object's type, always v3.reference.industry for this resource.
namestringName of the industry, e.g. Telecommunications equipment. Industries are finer-grained than sectors and match the industry field on tickers and company profiles.
symbol_countnumberNumber of listed symbols we cover in this industry.
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
Use industries with the broader sector catalog and canonical company profiles.
curl "https://api.roic.ai/v3.0.0/industries?apikey=YOUR_API_KEY"{
"data": [
{
"id": "ind_iiyRwJtLkdW9g7VTS2hHeb",
"object": "v3.reference.industry",
"name": "Telecommunications equipment",
"symbol_count": 800
}
],
"next_page_url": null,
"previous_page_url": null
}