/v1/actions/linkedin-extract-group-members/run/liveExtract LinkedIn Group Members scrapes the full member roster of any LinkedIn group you have access to, returning structured rows you can feed into outbound, enrichment, or community analytics. Each member comes back with profile metadata, not just a display name.
The action runs on the LinkedIn level and is built for teams who treat niche groups as ICP-dense audiences.
You pass a LinkedIn group URL or ID, and Edges paginates through the member list using your authenticated LinkedIn session. The run executes on Edges infrastructure with safe rate pacing — no cookie handling, no headless browser glue.
Results return as JSON rows. Large groups are processed async so extraction continues in the background while your workflow progresses.
Use Extract LinkedIn Group Members when a LinkedIn group is a proxy for topical intent — practitioners, buyers, or enthusiasts who self-select into a community. It maps to the LinkedIn search API use case and is especially useful when standard search filters do not capture the audience.
Groups tend to beat title-based targeting for anything specialised: "Kubernetes SRE", "SaaS CFOs", "DTC founders". Membership is the filter.
Edges paginates the full list. For very large groups, run async so the job is not bound to one HTTP request.
It uses the LinkedIn account you connected to Edges. Because group visibility depends on your membership, the action sees exactly what your account sees in the browser.
Yes. Typical chains are into Search LinkedIn People for cross-reference, or into Message LinkedIn Profile for a contextual first touch that references the shared group.
Run Extract LinkedIn Group Members from the Edges library, call it from the Edges API, or plug it into your n8n, Make, or Zapier flow. Browse the full Actions library for actions you can chain before and after.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-group-members/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_group_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
},
"parameters": {
"group_owner": true,
"group_member": true,
"group_manager": true
}
}'[
{
"membership_status": "example_value",
"joined_at": "example_value",
"linkedin_group_id": "example-123",
"linkedin_profile_picture": "example_value",
"sales_navigator_profile_id": "example-123",
"linkedin_profile_id": 42,
"linkedin_profile_handle": "example-123",
"linkedin_connection_degree": "example_value",
"summary": "example_value",
"first_name": "John",
"last_name": "Doe",
"full_name": "John Doe",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"linkedin_people_post_search_url": "https://www.linkedin.com/in/example-profile"
}
]