Extract Sales Navigator Company Employee Count

Track employee growth over 6 months, 1 year, and 2 years, providing comprehensive workforce insights.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/salesnavigator-extract-employees-count/run/live

Parameters

Input Parameters

Integration Parameters

Guide

What Extract Sales Navigator Company Employee Count does

Extract 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.

How it works

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.

When to use Extract Sales Navigator Company Employee Count

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.

Use cases

  • Account scoring refresh. Re-score target accounts weekly using 6-month growth as a momentum input — accounts trending up get bumped in SDR queues.
  • Churn and downgrade flags. Negative 1-year growth on a customer account triggers a CS review task before renewal.
  • Expansion signals for PLG. Positive headcount growth on existing customers surfaces expansion opportunities to AEs.
  • Investor tracking. Build a rolling dataset of portfolio company headcount to power quarterly board reports.
  • ABM enrichment. Append employee count and growth to every account record in your CRM via reverse ETL.

Best practices

  • Batch over a saved list. Combine with Extract Sales Navigator Accounts List to iterate headcount across a curated ABM universe.
  • Snapshot on a cadence. Schedule weekly runs so you build your own historical series independent of Sales Navigator's rolling windows.
  • Diff before writing. Only upsert CRM records when employeesCount or a growth field actually changes to keep event history clean.
  • Respect Sales Navigator quotas. Edges paces requests, but keep combined manual and automated activity within your seat's usage limits.

Common questions

How many companies can I run per execution?

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.

Does this use my Sales Navigator account or a shared pool?

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.

Can I chain Extract Sales Navigator Company Employee Count with other Edges actions?

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.

Get started

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.

Code Examples

bash
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"
  }
}'

Output Example

{
  "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
  ]
}

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.