ApiUncategorized
Get group members by group URL
Retrieve members of a LinkedIn group using the group URL. Automatically extracts the group ID from the URL. Convenient alternative to /groups/members when you have the full URL instead of just the ID.
POST
/groups/members-by-urlGet group members by group URL
Retrieve members of a LinkedIn group using the group URL. Automatically extracts the group ID from the URL. Convenient alternative to /groups/members when you have the full URL instead of just the ID.
Authentication requiredGroups
Code Examples
curl -X POST '/linkedin/groups/members-by-url' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"groupUrl":"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. |
groupUrl | string | Yes | Full LinkedIn group URL (e.g., "https://www.linkedin.com/groups/12345") |
count | number | No | Number of members to return per page |
start | number | No | Pagination offset (0-indexed) |
Example
{
"groupUrl": "string"
}Responses
| Status | Description |
|---|---|
| 200 | Group members retrieved successfully |
