/v1/actions/salesnavigator-extract-accounts-list/run/liveExtract 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.
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.
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.
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.
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.
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.
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.
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"
}
}'[
{
"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"
}
]