> ## Documentation Index
> Fetch the complete documentation index at: https://v3.captaindata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Extract LinkedIn Group Members

> Extract up to 2500 LinkedIn group's members.

To efficiently manage and analyze LinkedIn group dynamics, this action allows you to extract detailed information about group members, including their profiles and connection details.

<Steps>
  <Step title="Navigate to a Group Page">
    Go to the LinkedIn group page you are interested in.
  </Step>

  <Step title="Copy the URL">
    Copy the URL from your browser's address bar.
  </Step>

  <Step title="Paste the URL">
    Paste the URL into the provided input field.
  </Step>
</Steps>

<Info>
  Ensure the URL format is correct, such as
  "[https://www.linkedin.com/groups/8952/](https://www.linkedin.com/groups/8952/)".
</Info>

### Inputs

<ParamField path="linkedin_group_url" type="string" required={true} primary={true}>
  Input should look like this: "[https://www.linkedin.com/groups/8952/](https://www.linkedin.com/groups/8952/)"
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={100} initialValue={100}>
  Maximum number of results to extract per input. The limit is 2500.
</ParamField>

<ParamField path="group_manager" type="boolean" default={true}>
  Extract group managers.
</ParamField>

<ParamField path="group_owner" type="boolean" default={true}>
  Extract the group owner.
</ParamField>

<ParamField path="group_member" type="boolean" default={true}>
  Extract group members.
</ParamField>

<ParamField path="skip" type="number">
  If you want to skip a number of members, to extract more than 2500 members.
</ParamField>

### Output Fields

The extracted data includes the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="first_name" type="string">
      The first name of the group member
    </ResponseField>

    <ResponseField name="full_name" type="string">
      The full name of the group member
    </ResponseField>

    <ResponseField name="joined_at" type="string">
      The date the member joined the group
    </ResponseField>

    <ResponseField name="last_name" type="string">
      The last name of the group member
    </ResponseField>

    <ResponseField name="linkedin_connection_degree" type="string">
      The connection degree on LinkedIn
    </ResponseField>

    <ResponseField name="linkedin_group_id" type="string">
      The ID of the LinkedIn group
    </ResponseField>

    <ResponseField name="linkedin_people_post_search_url" type="string">
      The LinkedIn URL for people post search
    </ResponseField>

    <ResponseField name="linkedin_profile_handle" type="string">
      The LinkedIn profile handle
    </ResponseField>

    <ResponseField name="linkedin_profile_id" type="string">
      The LinkedIn profile ID
    </ResponseField>

    <ResponseField name="linkedin_profile_picture" type="string">
      The LinkedIn profile picture URL
    </ResponseField>

    <ResponseField name="linkedin_profile_url" type="string">
      The LinkedIn profile URL
    </ResponseField>

    <ResponseField name="membership_status" type="string">
      The membership status in the group
    </ResponseField>

    <ResponseField name="sales_navigator_profile_id" type="string">
      The Sales Navigator profile ID
    </ResponseField>

    <ResponseField name="summary" type="string">
      A summary of the group member
    </ResponseField>
  </Expandable>
</ResponseField>

Here is the JSON schema for the output:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "first_name": "string",
      "full_name": "string",
      "joined_at": "string",
      "last_name": "string",
      "linkedin_connection_degree": "string",
      "linkedin_group_id": "string",
      "linkedin_people_post_search_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_picture": "string",
      "linkedin_profile_url": "string",
      "membership_status": "string",
      "sales_navigator_profile_id": "string",
      "summary": "string"
  }
  ```
</Accordion>
