Search LinkedIn Groups

LinkedIn Group Search enables effortless searches for groups on LinkedIn.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/linkedin-search-groups/run/live

Parameters

Request parameters

Input Parameters

Integration Parameters

Guide

What Search LinkedIn Groups does

Search 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.

How it works

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.

When to use Search LinkedIn Groups

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.

Use cases

  • Audience mapping. Find every LinkedIn group above a member threshold in your topic space and rank them by activity for outreach.
  • Community sponsorship scouting. Surface groups in your vertical whose organizers might welcome a sponsor or co-branded event.
  • Competitive research. Watch which groups competitors' customers participate in to find organic distribution opportunities.
  • Niche prospecting. Discover small, high-signal groups where ICP conversations happen and prioritize them for manual engagement.
  • Content targeting. Identify where to share long-form content before publishing so distribution is scoped from day one.

Best practices

  • Use member count as a first filter. Groups below a few hundred members are often abandoned; groups above tens of thousands can be noisy.
  • Chain member extraction selectively. Running Extract LinkedIn Group Members on every result is wasteful — qualify groups first with Search LinkedIn Groups, then extract only the top matches.
  • Store `groupId` as the key. Use it to dedupe across scheduled runs and to correlate members back to their source group.
  • Run async for multi-keyword discovery. Scheduled scans across many queries belong in async execution so your pipeline stays responsive.

Common questions

How many groups can I extract per run?

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.

Does Search LinkedIn Groups use my LinkedIn account or a shared pool?

Your LinkedIn account. Searches are executed through the LinkedIn session you connect to Edges, so results reflect what your account can see.

Can I chain Search LinkedIn Groups with other Edges actions?

Yes. Pass each groupId into Extract LinkedIn Group Members to pull the audience, or into downstream profile extractors once you qualify which groups matter.

Get started

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.

Code Examples

bash
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"
  }
}'

Output Example

[
  {
    "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"
  }
]

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.