> ## 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 Followers

> Extract the list of your LinkedIn profile's followers.

This action allows you to extract a comprehensive list of followers from your LinkedIn profile. It is useful for analyzing your network and understanding your audience.

### Inputs

You don't need to provide any input for this action.

### Parameters

<ParamField path="max_results" type="number" default="200">
  The maximum number of connections to extract. The default is 200, and the
  maximum limit is 30,000.
</ParamField>

<ParamField path="skip_pages" type="number" default="0">
  How many connections to skip. A value of '1' means that the first 40
  connections are being skipped.
</ParamField>

### Output Fields

The action returns the following fields:

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

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

    <ResponseField name="job_title" type="string">
      The job title of the follower
    </ResponseField>

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

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

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

    <ResponseField name="linkedin_profile_url" type="string">
      The LinkedIn profile URL of the follower
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "first_name": "string",
      "full_name": "string",
      "job_title": "string",
      "last_name": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_url": "string"
  }
  ```
</Accordion>
