/v1/actions/salesnavigator-search-people/run/liveSearch Sales Navigator People extracts a targeted list of leads from Sales Navigator based on the search criteria you supply — title, seniority, geography, function, keywords, company list, and more. You get a clean, paginated roster of prospects that slots into your CRM, outreach cadence, or enrichment pipeline.
This action runs on the Sales Navigator level and is the core prospecting primitive for sales, recruiting, and growth teams who build lead lists programmatically rather than by hand.
You pass the Sales Navigator lead filters you want applied. Edges runs the search through your authenticated Sales Navigator session, walks the pages, and returns a normalized list of leads. For deep pulls, run it async — Edges paces the pagination safely on its own infrastructure, browser-less.
Under the hood the action honors Sales Navigator's result caps and rate guidance. Activity is attributed to the Sales Navigator account you connected, so the run is auditable end to end.
Reach for Search Sales Navigator People when you're building a fresh lead list from a filter definition rather than from an existing saved search or CRM segment. It's the go-to primitive for the LinkedIn search API use case — turn a persona or ICP into rows of prospects on demand.
It also works well as the first step of a weekly refresh job that tops up your outreach queue.
The action paginates through Sales Navigator's people result cap — typically up to 2,500 records per saved search shape. Split on geography or seniority to cover larger populations.
Your own seat. Edges signs every request with the Sales Navigator account you connected, so the leads returned match your access, saved searches, and network proximity.
Yes. A common chain is Search Sales Navigator People → Extract LinkedIn Profile for enrichment → Send Sales Navigator InMail or Message LinkedIn Profile for first-touch outreach.
Run Search Sales Navigator People from the Edges library, wire it into your outbound stack, or call it directly from the Edges API. Browse the full Actions library to see what to chain before and after the search.
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-search-people/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_search_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
},
"parameters": {
"exclude_crm_contacts": true,
"exclude_viewed_leads": true
}
}'[
{
"full_name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"company_name": "Example Name",
"sales_navigator_company_id": "example-123",
"linkedin_profile_id": 42,
"connection_degree": 42,
"job_title": "Software Engineer at Example Corp",
"summary": "example_value",
"profile_image_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_search_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_url": "https://www.linkedin.com/in/example-profile",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_id": "example-123",
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"location": "example_value",
"linkedin_people_post_search_url": "https://www.linkedin.com/in/example-profile",
"viewed": true,
"tenure_start": "example_value",
"tenure_end": "example_value",
"tenure_length": "example_value",
"recently_hired": true,
"recently_promoted": true,
"current_company": "example_value"
}
]