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

# Like LinkedIn Post

> Engage with LinkedIn publications, articles, and posts.

This API action allows you to interact with LinkedIn posts by sending various types of reactions. It is designed to enhance engagement with content on LinkedIn by automating the process of liking or reacting to posts.

### Inputs

<ParamField path="linkedin_post_url" type="string" required={true} primary={true}>
  A LinkedIn Post URL should start with "[https://www.linkedin.com/posts/](https://www.linkedin.com/posts/)".
</ParamField>

### Parameters

<ParamField path="interaction_type" type="string" default="like">
  The interaction you want to send. Options include: `insightful`, `curious`,
  `love`, `support`, `celebrate`, `like`, `funny`, `random` (for any of the
  previous values)
</ParamField>

### Output Fields

The API returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="linkedin_post_url" type="string">
      The URL of the LinkedIn post that was interacted with.
    </ResponseField>

    <ResponseField name="reaction" type="string">
      The type of reaction sent to the LinkedIn post.
    </ResponseField>
  </Expandable>
</ResponseField>

Here is the JSON schema for the output:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "linkedin_post_url": "string",
      "reaction": "string"
  }
  ```
</Accordion>

<Info>
  Ensure that the LinkedIn post URL is correctly formatted to avoid errors.
</Info>
