Skip to main content

Find Custom Headcount

POST /find-custom-headcount

Find custom employee headcount for a company with advanced filters.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
linkedin_urlstringYesCompany/school LinkedIn URL (must contain /company/, /showcase/, or /school/)
where_they_livearrayNoArray of geographic region IDs
where_they_studiedarrayNoArray of school IDs
what_they_doarrayNoArray of function IDs
what_they_are_skilled_atarrayNoArray of skill IDs
what_they_studiedarrayNoArray of field of study IDs
keywordsstringNoSearch keywords
include_subsidiariesstringNoInclude subsidiaries ("true" or "false", default: "false")

Example Request

curl --request POST \
--url https://api.infoplug.io/find-custom-headcount \
--header 'Content-Type: application/json' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY' \
--data '{
"linkedin_url": "https://www.linkedin.com/company/apple/",
"where_they_live": ["103644278"],
"what_they_do": ["8"],
"include_subsidiaries": "true"
}'

Example Response

{
"data": {
"linkedin_url": "https://www.linkedin.com/company/apple/",
"filters": {
"where_they_live": ["103644278"],
"what_they_do": ["8"],
"include_subsidiaries": "true"
},
"headcount": 15420
}
}