> ## 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 People Reaction Activity

> This action extracts all the reactions (like, support, love, etc.) from a LinkedIn profile's activity.

This action allows you to gather detailed reaction data from a LinkedIn profile, including likes, support, love, and more. It is useful for analyzing engagement and understanding audience interaction on LinkedIn.

### Inputs

<ParamField path="linkedin_profile_url" type="string" required={true} primary={true}>
  The URL of the LinkedIn profile from which to extract reaction activity.
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={100}>
  The maximum number of reactions to extract. The value can range from 1 to
  30,000.
</ParamField>

<ParamField path="max_days" type="number" default={0}>
  Specifies the maximum number of days from which data will be extracted. A
  value of 0 disables this setting.
</ParamField>

<ParamField path="max_minutes" type="number" default={0}>
  Specifies the maximum number of minutes from which data will be extracted. A
  value of 0 disables this setting.
</ParamField>

### Output Fields

The action returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="linkedin_post_id" type="string">
      The ID of the LinkedIn post.
    </ResponseField>

    <ResponseField name="linkedin_post_url" type="string">
      The URL of the LinkedIn post.
    </ResponseField>

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

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

    <ResponseField name="linkedin_reaction_id" type="string">
      The ID of the LinkedIn reaction.
    </ResponseField>

    <ResponseField name="linkedin_reaction_type" type="string">
      The type of LinkedIn reaction (e.g., like, support).
    </ResponseField>

    <ResponseField name="linkedin_reaction_url" type="string">
      The URL of the LinkedIn reaction.
    </ResponseField>

    <ResponseField name="published_time" type="string">
      The time when the reaction was published.
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "linkedin_post_id": "string",
      "linkedin_post_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_url": "string",
      "linkedin_reaction_id": "string",
      "linkedin_reaction_type": "string",
      "linkedin_reaction_url": "string",
      "published_time": "string"
  }
  ```
</Accordion>

### Specificities

<Steps>
  <Step title="How to get the LinkedIn profile URL">
    <p>
      1. Use a previous action like Search LinkedIn People to obtain the profile
         URL.
    </p>

    <p>
      2. Manually navigate to the person's LinkedIn profile and copy the URL
         from your browser.
    </p>
  </Step>
</Steps>

<Info>
  This action is particularly useful for tracking and analyzing engagement on
  LinkedIn profiles.
</Info>
