> ## 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 Post Activity

> Extract all the LinkedIn activity posts from a specific people profile.

This action allows you to extract recent posts from a LinkedIn profile, providing insights into the user's activity. It is particularly useful for tracking engagement and content trends on LinkedIn.

### Inputs

<ParamField path="linkedin_profile_url" type="string" required={true} primary={true}>
  The URL of the LinkedIn profile from which to extract posts. Example:
  `https://www.linkedin.com/in/romanebeaudouin`
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={100}>
  The maximum number of posts to extract per input. Must be smaller or equal to
  30,000.
</ParamField>

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

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

### Output Fields

The extracted data includes the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="comment_count" type="integer">
      The number of comments on the post
    </ResponseField>

    <ResponseField name="content_text" type="string">
      The text content of the post
    </ResponseField>

    <ResponseField name="first_name" type="string">
      The first name of the profile owner
    </ResponseField>

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

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

    <ResponseField name="linkedin_original_post_url" type="string">
      The original URL of the LinkedIn post
    </ResponseField>

    <ResponseField name="linkedin_post_id" type="string">
      The unique identifier of the LinkedIn post
    </ResponseField>

    <ResponseField name="linkedin_post_type" type="string">
      The type 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 LinkedIn handle of the profile
    </ResponseField>

    <ResponseField name="linkedin_profile_id" type="string">
      The unique identifier of the LinkedIn profile
    </ResponseField>

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

    <ResponseField name="published_date" type="string">
      The date when the post was published
    </ResponseField>

    <ResponseField name="reaction_count" type="integer">
      The number of reactions on the post
    </ResponseField>
  </Expandable>
</ResponseField>

Here is the JSON schema for the output:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "comment_count": "integer",
      "content_text": "string",
      "first_name": "string",
      "full_name": "string",
      "last_name": "string",
      "linkedin_original_post_url": "string",
      "linkedin_post_id": "string",
      "linkedin_post_type": "string",
      "linkedin_post_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_url": "string",
      "published_date": "string",
      "reaction_count": "integer"
  }
  ```
</Accordion>

### Specificities

This action can be effectively combined with other LinkedIn-related actions such as:

* <a href="https://app.captaindata.co/store/linkedin-post-commenters" target="_blank" rel="noopener">
    Extract LinkedIn Post Commenters
  </a>
* <a href="https://app.captaindata.co/store/linkedin-post-likers" target="_blank" rel="noopener">
    Extract LinkedIn Post Likers
  </a>
* <a href="https://app.captaindata.co/store/linkedin-like-post" target="_blank" rel="noopener">
    Like LinkedIn Post
  </a>

These combinations can enhance your data collection and engagement strategies on LinkedIn.
