Skip to main content

Search Companies

POST /search-companies

Search for companies using Sales Navigator filters. This is an asynchronous endpoint that creates a search job.

How the Process Works

  • Use this endpoint to search companies with your criteria.
  • This endpoint returns a request_id for tracking progress.
  • This step costs 25 credits, even if the search returns 0 results.

Step 2: Monitor Search Progress

Step 3: Retrieve Results

  • Once the search is complete, access the results via the Get Company Search Results endpoint.
  • Retrieving each company incurs 1 credit.

For tutorials and demo code, see How to Search Companies.

Parameters

You can either provide search filters OR a Sales Navigator URL.

Option 1: Search Filters

ParameterTypeRequiredDescription
industry_codesarrayNoIndustry IDs to include
industry_codes_excludearrayNoIndustry IDs to exclude
company_headcountsarrayNoHeadcount ranges: A (1-10), B (11-50), C (51-200), D (201-500), E (501-1000), F (1001-5000), G (5001-10000), H (10001+)
company_headcount_growthobjectNoGrowth percentage range: { "min": 5, "max": 50 }
headquarters_locationarrayNoLocation IDs to include
headquarters_location_excludearrayNoLocation IDs to exclude
hiring_on_linkedinstringNoFilter by hiring status ("true" or "false")
recent_activitiesarrayNoActivity type filters
keywordsstringNoSearch keywords
limitintegerNoMax results (1-1000, default: 100)

Option 2: Sales Navigator URL

ParameterTypeRequiredDescription
sales_nav_urlstringYesLinkedIn Sales Navigator search URL
limitintegerNoMax results (1-1000, default: 100)

See Understanding Company Search Filters for all available filters.

Example Request

curl --request POST \
--url https://api.infoplug.io/search-companies \
--header 'Content-Type: application/json' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY' \
--data '{
"company_headcounts": ["E", "F", "G"],
"headquarters_location": [103644278],
"hiring_on_linkedin": "true",
"limit": 100
}'

Example Response

{
"message": "Company search job created",
"request_id": "search-companies-1234567890-abc123",
"status": "processing",
"search_type": "standard"
}

Headcount Codes Reference

CodeRange
A1-10 employees
B11-50 employees
C51-200 employees
D201-500 employees
E501-1000 employees
F1001-5000 employees
G5001-10000 employees
H10001+ employees