Extract employee distribution, growth trends, and workforce insights from LinkedIn company pages for talent or market analysis.
/v1/actions/linkedin-extract-company-employees-insights/run/liveExtract LinkedIn Company Employees Insights pulls the aggregated workforce view LinkedIn publishes on a company page — headcount distribution by function, seniority, geography, and headcount growth over time. It runs on the LinkedIn level through your connected session and returns the insights as structured JSON you can score, chart, or stream into a warehouse.
Use it to understand an account's shape without scraping every employee profile one by one.
You supply a company page URL (or company ID) and Edges reads the insights tab on the page through your authenticated LinkedIn session. The response is the same aggregate data a buyer sees in the browser — department splits, seniority distribution, tenure distribution, top locations, new hires, and the headcount growth trend — normalized into fields your pipeline can consume.
Because the underlying data is aggregated, Extract LinkedIn Company Employees Insights does not return individual employee records. For a person-level breakdown, pair it with Search LinkedIn Company Employees.
Reach for this action when you want a fast, account-level read on shape and momentum — "is this company hiring? in which function? is the sales team growing?" — without pulling a full employee list. It is a strong signal for buying intent when a function you sell into is hiring faster than the company average.
It sits inside the LinkedIn profile & company data API use case and complements firmographic enrichment via Extract LinkedIn Company Profile.
recentHires30d crosses a threshold in a target function — often a pre-buying signal.topLocations to align with rep geographies.headcountSeries and newHireFunctions month over month to anticipate product or GTM moves.One per call. Extract LinkedIn Company Employees Insights is a per-company action. For account lists, fan out the calls and let Edges pace server-side.
Your LinkedIn account. The company insights surface is visible to any logged-in LinkedIn user, and Edges reads it through your authenticated session.
Yes. Common chains pair it with Extract LinkedIn Company Profile for firmographics and Search LinkedIn Company Employees for person-level detail.
Run Extract LinkedIn Company Employees Insights from the Edges library against your account list, write the snapshots to your warehouse, or call it directly from the Edges API. Browse the full Actions library to compose it into a complete account intelligence workflow.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-company-employees-insights/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"custom_data": "example_value",
"linkedin_company_url": "https://www.linkedin.com/in/example-profile",
"linkedin_company_id": 10
},
"parameters": {
"affiliates": true
}
}'{
"linkedin_company_url": "https://www.linkedin.com/in/example-profile",
"linkedin_company_handle": "example-123",
"linkedin_company_id": 42,
"locations": [
1,
2,
3
],
"schools": [
1,
2,
3
],
"functions": [
1,
2,
3
],
"skills": [
1,
2,
3
],
"fields_of_study": [
1,
2,
3
],
"connection_degrees": [
1,
2,
3
]
}