/v1/actions/salesnavigator-extract-employees-count/run/liveExtract Sales Navigator Company Employee Count pulls the current headcount for a target company from Sales Navigator and returns historical growth snapshots over the last 6 months, 1 year, and 2 years. You get a clean numeric series you can stream into a dashboard, a scoring model, or a reverse-ETL job — no scraping code, no session juggling.
It runs on the Sales Navigator level and uses your connected Sales Navigator seat to read the data points Sales Navigator itself exposes on a company record.
You pass a Sales Navigator company URL or ID. Edges authenticates the request through your Sales Navigator session, fetches the company's employee count widget, and normalizes the returned growth metrics into a typed JSON payload. The action runs on Edges infrastructure with built-in pacing, so you do not need to throttle client-side or manage cookies yourself.
Because employee count is sampled from Sales Navigator at the moment of the run, you can schedule this action to build your own time series rather than relying on Sales Navigator's native windows. Results come back as numbers and growth deltas you can diff on every execution.
Use it when you need headcount as a signal, not just a data point. Hiring acceleration often precedes budget releases and new tooling decisions, so pulling growth over rolling windows feeds directly into account scoring and churn risk models. It plugs cleanly into the LinkedIn profile & company data API workflow most revenue teams already run.
Pair it with a scheduled run over your ABM list and you get a weekly delta feed of every target account's workforce trajectory.
employeesCount or a growth field actually changes to keep event history clean.Each run targets a single company. For list-level processing, wire the action into a loop over an account list — most teams use Extract Sales Navigator Accounts List as the upstream source and fan out.
Your Sales Navigator seat. You connect Sales Navigator once to Edges and every call is executed through that authenticated session, which means all activity is attributable to your account.
Yes. It chains naturally with Extract Sales Navigator Employees Distribution to break headcount down by function, or with Extract Company to enrich the same company record with firmographics in one workflow.
Add Extract Sales Navigator Company Employee Count to a scheduled flow in Edges, or call it directly from the Edges API and write the payload to your warehouse. Browse the full Actions library to see what else you can chain for company intelligence.
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-extract-employees-count/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
}
}'{
"sales_navigator_employee_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_company_id": "example-123",
"employee_median_tenure": 42,
"total_employee_count": 42,
"monthly_headcounts": [
1,
2,
3
]
}