The Company type (company_type) filter enables the discovery of companies based on whether they are publicly listed or privately held.
Use this filter when you want to include or restrict companies by listing status, for example when searching only for public companies.
Search modes
Exact match
This mode is helpful when you are searching for companies with a specific company type. To run an exact match search, use equals in the relation parameter, and input the company type in the value field.
For example, the filter below searches for all companies that are public.
{
"attribute": "company_type",
"relation": "equals",
"value": "Public"
}
Multiple exact match
Multiple exact match
To search for multiple company types simultaneously, input the respective company types as an array in the value field, and set the relation to in. The API will return all companies with a company type matching any of the provided inputs.
For example, the following filter returns all companies that are either public or private.
{
"attribute": "company_type",
"relation": "in",
"value": ["Public", "Private"]
}
ReferenceTo view all available filter relations and accepted types, please check the Filter Relations section.
