Facebook Pixel
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-url

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.

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

FieldTypeRequiredDescription
accountIdstringNoLinkedIn account ID to use. If not provided, uses the default account.
groupUrlstringYesFull LinkedIn group URL (e.g., "https://www.linkedin.com/groups/12345")
countnumberNoNumber of members to return per page
startnumberNoPagination offset (0-indexed)

Example

{
  "groupUrl": "string"
}

Responses

StatusDescription
200Group members retrieved successfully