/v1/actions/linkedin-search-company-employees/run/liveSearch LinkedIn Company Employees extracts the employee roster of a LinkedIn company page so you can build decision-maker lists, sourcing pipelines, and org-mapping datasets. You get each employee as a structured row — name, headline, profile URL, current role — ready to enrich or load into your CRM. It targets sales teams building ABM lists, recruiters mapping talent pools, and researchers tracking hiring shifts.
The action runs on the LinkedIn level and uses your authenticated LinkedIn session on Edges.
You pass a LinkedIn company URL or company ID, optionally with search filters (title keyword, seniority, location), and Search LinkedIn Company Employees iterates the company's people tab on your behalf. Edges handles pagination, normalizes the rows, and returns a clean array of employee records.
Every request is signed with your connected LinkedIn session and paced to respect LinkedIn's activity guidance. The action is built for async execution — most company rosters span many pages, and you do not want to block a workflow on a long pull.
Reach for Search LinkedIn Company Employees when your unit of work is a company and you need its people. Once a target account is on your list, the next question is always "who do we reach?" — this action answers it with a structured employee roster.
It plugs into the LinkedIn profile and company data API use case. Teams use it as the bridge between account-level prospecting and contact-level outreach.
It depends on the company's size and how deep LinkedIn paginates for your session. Expect to capture the bulk of a small-to-mid-size company's roster; very large companies will cap at LinkedIn's pagination ceiling — use filters to narrow.
Your LinkedIn account. Every extraction runs through the session you connect to Edges, so visibility matches what your account would see manually.
Yes. Feed the profileId into Extract LinkedIn Profile, Extract Linkedin User Contact Info, or Connect LinkedIn Profile to run outreach on the extracted roster.
Run Search LinkedIn Company Employees from the Edges library, schedule it against your ABM list, or call it directly from the Edges API. Browse the full Actions library to see the enrichment and outreach actions that chain downstream.
curl -X POST "https://api.edges.run/v1/actions/linkedin-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": {
"linkedin_company_url": "https://www.linkedin.com/in/example-profile",
"linkedin_company_id": 10,
"custom_data": "example_value"
},
"parameters": {
"title": "example_value",
"network": "example_value",
"geo_urn": "example_value",
"industry": "example_value",
"keywords": "example_value",
"past_company": "example_value",
"school_filter": "example_value",
"contact_interest": "example_value",
"profile_language": "example_value"
}
}'[
{
"full_name": "John Doe",
"headline": "Software Engineer at Example Corp",
"location": "example_value",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_id": "example-123",
"linkedin_profile_id": 42,
"connection_degree": "example_value",
"job_title": "Software Engineer at Example Corp",
"company_name": "Example Name",
"current_company": "example_value",
"profile_image_url": "https://www.linkedin.com/in/example-profile",
"first_name": "John",
"last_name": "Doe",
"current_title": "Software Engineer at Example Corp",
"linkedin_profile_handle": "example-123",
"linkedin_company_id": "example-123",
"linkedin_company_url": "https://www.linkedin.com/in/example-profile"
}
]