Company
Searches through monitored companies.
Create a search operation for companies. This endpoint will not return the list of resulting companies, but instead it will return a search key, that can be used to list the companies found by using getCompanies operation. Attention: Every unique client id can create a maximum of 100000 search key per day. Attention: All array type search criteria may take a maximum of 100000 values each.
post/api/v2/companies/search
Request body
Example request
{
"GenericSearchText": "Health",
"EcosystemIds": [
1234
],
"IndustryIds": [
1234
],
"CountryCodes": [
"US"
],
"TagIds": [
1234
],
"ProductGroupIds": [
1234
],
"LicenseTypes": [
"Not Attached"
],
"LicenseStatus": [
"Inactive"
],
"GradeLetters": [
"C-"
],
"ControlCodes": [
"APPSEC-000"
],
"CveOrCweCodes": [
"CVE-2022-23589"
],
"ThreatActorIds": [
1234
],
"LeakIds": [
1234
],
"TagConfidences": [
"High"
],
"CwssCvssBiggerThanValue": 8.99,
"CompanySizeGreaterThan": 1,
"CompanySizeLessThan": 10,
"CountryRiskRatings": [
"High"
],
"NumberOfEmployeeGreaterThan": 10,
"NumberOfEmployeeLessThan": 100,
"RevenueGreaterThan": 1000,
"RevenueLessThan": 10000,
"NetIncomeGreaterThan": 1000,
"NetIncomeLessThan": 10000,
"OperatingIncomeGreaterThan": 1000,
"OperatingIncomeLessThan": 10000,
"EquityGreaterThan": 1000,
"EquityLessThan": 10000,
"UseGenAIs": [
"Yes"
]
}Response
Success
Example response
{
"Key": "0f8fad5b-d9cb-469f-a165-70867728950e"
}