Facebook Pixel
ApiUncategorized

Get group members by group ID

Retrieve members of a LinkedIn group by its ID. Returns profile information for group members. Useful for lead generation, networking, and community analysis. Requires membership in the group to access member list.

POST/groups/members

Get group members by group ID

Retrieve members of a LinkedIn group by its ID. Returns profile information for group members. Useful for lead generation, networking, and community analysis. Requires membership in the group to access member list.

Authentication requiredGroups

Code Examples

curl -X POST '/linkedin/groups/members' \
-H 'Authorization: Bearer <your_api_key>' \
-H 'Content-Type: application/json' \
-d '{"groupId":"string"}'

Parameters

No parameters.

Request Body

FieldTypeRequiredDescription
accountIdstringNoLinkedIn account ID to use. If not provided, uses the default account.
groupIdstringYesLinkedIn group ID (numeric ID from group URL)
countnumberNoNumber of members to return per page
startnumberNoPagination offset (0-indexed)

Example

{
  "groupId": "string"
}

Responses

StatusDescription
200Group members retrieved successfully