> ## 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 Profile Viewers

> Extract the list of profiles that visited your LinkedIn profile.

This action allows you to extract a list of LinkedIn profiles that have viewed your profile. It is useful for understanding who is interested in your professional background and for networking purposes.

### Inputs

This action does not require any input fields. The account you select will be used to extract the profile viewers.

### Parameters

<ParamField path="max_results" type="number" default="1">
  The maximum number of profile viewers to extract. The default is 1, and the
  maximum is 50.
</ParamField>

<ParamField path="max_days" type="number" default="0">
  Specifies the maximum number of days from which data will be extracted. If set
  to 0, this setting is disabled.
</ParamField>

<ParamField path="max_minutes" type="number" default="0">
  Specifies the maximum number of minutes from which data will be extracted. If
  set to 0, this setting is disabled.
</ParamField>

### Output Fields

The following fields are included in the output:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="connection_degree" type="string">
      The degree of connection to the profile viewer.
    </ResponseField>

    <ResponseField name="headline" type="string">
      The headline of the LinkedIn profile viewer.
    </ResponseField>

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

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

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

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

    <ResponseField name="profile_image_url" type="string">
      The URL of the profile image of the viewer.
    </ResponseField>

    <ResponseField name="sales_navigator_profile_id" type="string">
      The Sales Navigator profile ID of the viewer.
    </ResponseField>

    <ResponseField name="view_date" type="string">
      The date when the profile was viewed.
    </ResponseField>

    <ResponseField name="view_timestamp" type="string">
      The timestamp of when the profile was viewed.
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "connection_degree": "string",
      "headline": "string",
      "linkedin_people_post_search_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_url": "string",
      "profile_image_url": "string",
      "sales_navigator_profile_id": "string",
      "view_date": "string",
      "view_timestamp": "string"
  }
  ```
</Accordion>
