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/membersGet 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
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID to use. If not provided, uses the default account. |
groupId | string | Yes | LinkedIn group ID (numeric ID from group URL) |
count | number | No | Number of members to return per page |
start | number | No | Pagination offset (0-indexed) |
Example
{
"groupId": "string"
}Responses
| Status | Description |
|---|---|
| 200 | Group members retrieved successfully |
