Extract Sales Navigator Accounts List

Sales Navigator Accounts List Extractor extracts account lists via Sales Navigator and saves plenty of time on your B2B prospecting.

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

API Endpoint

POST/v1/actions/salesnavigator-extract-accounts-list/run/live

Parameters

Request parameters

Input Parameters

Integration Parameters

Guide

What Extract Sales Navigator Accounts List does

Extract Sales Navigator Accounts List pulls every account from a Sales Navigator Accounts List and returns each company as a structured record with firmographics ready for your CRM or data warehouse. It runs on the Sales Navigator level and is the fastest way to turn a saved Accounts List into a working B2B prospecting dataset without exporting manually.

The action targets a specific list — not a search — so the extraction is deterministic: the accounts your team curated in Sales Navigator come out the other side as clean JSON.

How it works

You pass in the Sales Navigator Accounts List URL or list ID, Edges walks the list through your authenticated Sales Navigator session, and each account is parsed into a typed company record. For long lists, the run executes asynchronously and returns the full set on completion.

The action runs on Edges infrastructure, browser-less and paced against Sales Navigator's rate guidance. If the list is private to a different seat or the ID is invalid, Edges returns a typed error so your workflow can branch cleanly.

When to use Extract Sales Navigator Accounts List

Use this action when your SDRs curate target accounts inside Sales Navigator and the rest of the stack — CRM, outbound sequencer, BI — needs those accounts as data. It fits the LinkedIn profile & company data API use case and is a staple in B2B prospecting pipelines.

Extract Sales Navigator Accounts List is usually the first step in an ABM workflow: extract the list, enrich, match against open opportunities, route.

Use cases

  • ABM list sync. Sync a curated Sales Navigator Accounts List into HubSpot or Salesforce nightly so target-account flags stay fresh.
  • Firmographic enrichment. Use the extracted list as input to an enrichment pipeline that adds revenue, tech stack, and funding.
  • Employee discovery. Chain with Search Sales Navigator Company Employees to find decision-makers at every account on the list.
  • Pipeline coverage reporting. Compare extracted target accounts against open opportunities to flag uncovered accounts for SDR action.
  • Territory planning. Pull each sales rep's Sales Navigator Accounts List and merge into a territory-wide view of prospecting focus.

Best practices

  • Run async on large lists. Accounts Lists with thousands of companies should run asynchronously; subscribe to a webhook on completion rather than polling the Edges API.
  • Cache on `companyId`. Firmographic fields change slowly. Cache the payload and refresh on a weekly or monthly cadence for most workflows.
  • Chain to employee extraction. The accounts list is a company primitive. Pair with Extract Sales Navigator Employees Distribution for headcount-function intel per account.
  • Respect Sales Navigator seat ownership. Accounts Lists are seat-scoped; the extraction runs under the seat connected to Edges, not a shared pool.

Common questions

How many accounts can I extract per run?

Extract Sales Navigator Accounts List walks the full list up to your optional limit. Large lists run asynchronously. There is no hard Edges cap; Sales Navigator's own list size is the practical ceiling.

Does Extract Sales Navigator Accounts List use my LinkedIn account or a shared pool?

Your Sales Navigator seat. Accounts Lists are private to the seat that owns them, so the extraction must run through your connected Sales Navigator session on Edges. Pacing and session management are handled for you.

Can I chain Extract Sales Navigator Accounts List with other Edges actions?

Yes. Common chains are Extract Sales Navigator Accounts List → [Extract Company](/actions/salesnavigator-extract-company) → CRM write or Extract Sales Navigator Accounts List → [Search Sales Navigator Company Employees](/actions/salesnavigator-search-company-employees) → outreach. The output is a plain array of company records any downstream action can consume.

Get started

Run Extract Sales Navigator Accounts List on a schedule from the Edges dashboard, or call the Edges API from your ABM pipeline. Browse the full Actions library to compose list extraction with company, employee, and messaging actions.

Code Examples

bash
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-extract-accounts-list/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_list_url": "https://www.linkedin.com/in/example-profile",
    "custom_data": "example_value"
  }
}'

Output Example

[
  {
    "category": "example_value",
    "sales_navigator_company_id": "example-123",
    "company_name": "Example Name",
    "sales_navigator_employees_url": "https://www.linkedin.com/in/example-profile",
    "location": "example_value",
    "number_employees": "example_value",
    "sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
    "sales_navigator_company_list_url": "https://www.linkedin.com/in/example-profile"
  }
]

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.