/v1/actions/salesnavigator-extract-company/run/liveExtract Company pulls structured company data from a Sales Navigator account page, so you get firmographics, employee counts, growth signals, and related metadata as clean JSON rather than a screenshot of a profile. It runs on the Sales Navigator level through your connected session, which means the data includes Sales-Navigator-only fields that are not available on a public LinkedIn company page.
Use it for CRM enrichment, account scoring, and account planning where consistent company records matter more than manual research.
You supply a Sales Navigator account URL (or account ID) and Edges pulls the full account view through your authenticated Sales Navigator session. The call returns a normalized company object with firmographic attributes, headcount figures, department-level insights, and Sales-Navigator-specific signals like recent growth and senior hires. No browser on your side, no stale CSV exports.
Because the action runs on Sales Navigator infrastructure, you get fields that are not part of a vanilla public company scrape — department distribution, recent hire trends, and Sales Navigator activity signals.
Use Extract Company when you are enriching an account list, scoring ABM targets, or keeping a CRM's firmographic data fresh. Because the fields come from Sales Navigator, the enrichment quality is noticeably higher than public-page scraping — especially for growth and headcount signals.
It slots into the LinkedIn profile & company data API use case and pairs naturally with people-side actions on the same account.
recentHires, growthRate, and departmentDistribution into a scoring model that surfaces accounts in active buying motions.jobOpeningsCount in a target function crosses a threshold — a clear hiring-signal intent trigger.publicLinkedInUrl as your join key to avoid double-writing records.One account per call. For account lists, fan out Extract Company across your target records with Edges pacing the Sales Navigator requests. There is no hard per-run limit inside Edges, but Sales Navigator seat-level activity caps still apply.
Your Sales Navigator account. Edges authenticates every request through the Sales Navigator session you connect, which is also why you get Sales-Navigator-only fields.
Yes. Common patterns pair Extract Company with Search Sales Navigator Company Employees and Extract Sales Navigator Employees Distribution to build a complete account picture.
Run Extract Company from the Edges library against your account list, write the output to your CRM, or call it directly from the Edges API. Browse the full Actions library to compose it into a complete Sales Navigator enrichment workflow.
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-extract-company/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",
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_company_id": 10
}
}'{
"sales_navigator_company_id": 42,
"category": "example_value",
"company_name": "Example Name",
"description": "example_value",
"number_employees": 42,
"sales_navigator_employees_url": "https://www.linkedin.com/in/example-profile",
"growth_one_year": "example_value",
"growth_two_years": "example_value",
"growth_six_months": "example_value",
"country": "example_value",
"city": "example_value",
"postal_code": "example_value",
"sales_navigator_headquarters_address": "example_value",
"linkedin_company_url": "https://www.linkedin.com/in/example-profile",
"profile_image_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"specialties": [
"item1",
"item2",
"item3"
],
"website": "example_value",
"year_founded": 42,
"type": "example_value",
"revenue": "example_value"
}