/v1/actions/salesnavigator-search-company-employees/run/liveSearch Sales Navigator Company Employees extracts a filtered list of employees working at a target company on Sales Navigator, starting from a company ID and the search criteria you pass in. You get a structured roster of people — headline, current role, seniority, location — ready to push into your CRM, enrichment pipeline, or outreach queue.
This action runs on the Sales Navigator level and is built for sales, recruiting, and ABM teams who need to map accounts by actual headcount rather than by a static company profile.
You hand Edges a Sales Navigator company ID plus the filters you want applied (seniority, function, geography, keyword). Edges runs the search through your authenticated Sales Navigator session, paginates results safely, and returns a normalized list. The run is async for deep pulls so you can step away and collect results when the job finishes.
Because it runs on Edges infrastructure, pacing is handled for you — no client-side throttling, no browser automation to babysit. Every request is signed with the Sales Navigator account you connected to Edges, which keeps the activity auditable.
Use this action when you need the current people layer of an account, not the marketing bio. It plugs directly into the LinkedIn search API use case — you feed it a target list of company IDs and it returns the decision-makers, champions, or end users you need to talk to.
Pair it with company-level extraction to build full account profiles before outreach starts.
The action paginates through Sales Navigator's result cap (typically the first 2,500 records per search), so narrow your filters if the company exceeds that. Split by function or location to cover larger organizations.
Your own Sales Navigator session. Edges signs every request with the account you connected, so results reflect your network, saved lists, and search history, and activity is attributed to you.
Yes. A common chain is Search Sales Navigator Companies to find target accounts, then Search Sales Navigator Company Employees to extract decision-makers, then Extract LinkedIn Profile to enrich each person.
Run Search Sales Navigator Company Employees from the Edges library, wire it into your ABM or recruiting 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-company-employees/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",
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"linkedin_company_id": "example_value"
},
"parameters": {
"geo": "example_value",
"function": "example_value",
"relationship": "example_value",
"employees_title": "example_value",
"bing_postal_code": "example_value",
"industry": "example_value",
"seniority": [
"item1",
"item2"
],
"function_excluded": [
"item1",
"item2"
],
"keywords": "example_value",
"geography_excluded": [
"item1",
"item2"
],
"current_job_title_excluded": [
"item1",
"item2"
],
"industry_excluded": [
"item1",
"item2"
],
"seniority_level_excluded": [
"item1",
"item2"
],
"exclude_saved_leads": true,
"exclude_viewed_leads": true,
"exclude_contacted_leads": true,
"search_within_my_accounts": 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",
"position_started_at": "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"
}
]