/v1/actions/salesnavigator-extract-leads-list/run/liveExtract Sales Navigator Leads List pulls every lead out of a Sales Navigator saved leads list and returns a structured, paginated result set — names, profile URLs, titles, companies, and the metadata Sales Navigator attaches to the list. You stop copy-pasting from the UI and start treating curated lists as a data source your stack can query.
It runs on the Sales Navigator level and reads the list through your connected Sales Navigator seat.
You pass the Sales Navigator leads list ID or URL. Edges signs the request with your Sales Navigator session, walks the pagination, and emits a single normalized array per run. The action runs on Edges infrastructure with built-in pacing and retries, so you do not need to handle tokens, cursors, or rate limits yourself.
The output is flat and stable — every lead row has the same schema regardless of how long the list is — which makes it trivial to upsert into a warehouse or CRM table.
Use Extract Sales Navigator Leads List when your revenue team already curates lists in Sales Navigator — for ABM, event follow-up, or persona targeting — and you need those leads out of the UI and into the rest of your stack. It plugs directly into the LinkedIn search API workflow and is usually the first step in any prospecting sequence built on Edges.
It is the cleanest way to turn a Sales Navigator list into a CRM segment, a Slack alert, or the input to a messaging campaign.
Edges walks pagination up to the configured maxResults. Sales Navigator lists commonly hold thousands of leads, and the action handles cursoring for you — set maxResults to match your workflow's needs.
Your Sales Navigator seat. You connect Sales Navigator to Edges once, and every extraction runs through that authenticated session with full activity attribution.
Yes. Most workflows fan out from the list into Visit Sales Navigator Profile, Connect Sales Navigator Profile, or Send Sales Navigator InMail per lead.
Run Extract Sales Navigator Leads List from the Edges library, schedule it against your curated lists, or call it directly from the Edges API and write straight to your CRM. Browse the full Actions library for the rest of the Sales Navigator automation stack.
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-extract-leads-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_profile_list_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
},
"parameters": {
"exclude_viewed_leads": true
}
}'[
{
"company_name": "Example Name",
"connection_degree": 42,
"current_company": "example_value",
"first_name": "John",
"full_name": "John Doe",
"headline": "Software Engineer at Example Corp",
"job_title": "Software Engineer at Example Corp",
"last_name": "Doe",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"location": "example_value",
"linkedin_profile_id": 42,
"profile_image_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_company_id": "example-123",
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_id": "example-123",
"sales_navigator_profile_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_search_url": "https://www.linkedin.com/in/example-profile",
"tenure_end": "example_value",
"tenure_length": "example_value",
"tenure_start": "example_value",
"viewed": true,
"linkedin_people_post_search_url": "https://www.linkedin.com/in/example-profile",
"recently_hired": true,
"recently_promoted": true,
"sales_navigator_profile_list_url": "https://www.linkedin.com/in/example-profile"
}
]