/v1/actions/linkedin-search-groups/run/liveSearch LinkedIn Groups finds groups on LinkedIn that match your query so you can surface niche communities, audit active discussions, and feed networking and discovery workflows. You get each group as a structured row — name, URL, member count, category — ready to drop into lists and dashboards. It targets community managers, growth teams, and researchers who treat LinkedIn groups as a signal or distribution surface.
The action runs on the LinkedIn level and uses your authenticated LinkedIn session on Edges.
You pass a LinkedIn groups search URL or a keyword with filters (visibility, language), and Search LinkedIn Groups iterates the result pages for you. Edges handles pagination, normalizes the rows, and returns an array of group objects with stable IDs.
Every request is signed with your connected LinkedIn session and paced to respect LinkedIn's activity guidance. The action supports both live and async execution — use async for scheduled discovery across many keywords.
Reach for Search LinkedIn Groups when a community is the unit of work — finding where your audience congregates, auditing existing groups in your space, or surfacing partners who run active communities. It is the discovery step before any member-level or engagement work.
It plugs into the LinkedIn engagement API use case. Teams use it to seed networking and content-distribution strategies that extend beyond the public feed.
Typically a few hundred per query. Very broad keyword sets will hit LinkedIn's pagination ceiling — narrow the query or add language/visibility filters to capture more of the population.
Your LinkedIn account. Searches are executed through the LinkedIn session you connect to Edges, so results reflect what your account can see.
Yes. Pass each groupId into Extract LinkedIn Group Members to pull the audience, or into downstream profile extractors once you qualify which groups matter.
Run Search LinkedIn Groups from the Edges library, schedule it against your topic keywords, or call it from the Edges API to maintain a weekly community map. Browse the full Actions library to see the extraction and engagement actions that pair with it.
curl -X POST "https://api.edges.run/v1/actions/linkedin-search-groups/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_search_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
}
}'[
{
"group_name": "Example Name",
"description": "example_value",
"members": "example_value",
"linkedin_group_url": "https://www.linkedin.com/in/example-profile",
"linkedin_group_id": "example-123"
}
]