# Analyze LinkedIn Post Engagement

**Use case:** 

Get engagement per post: reactions, comments, shares, author, and follower count, ready for a dashboard. One row per post.

## Input

```json
{
  "profileUrls": [
    "https://www.linkedin.com/in/williamhgates"
  ],
  "maxPostsPerProfile": 20,
  "startDate": "2025-01-01",
  "endDate": "2025-12-31"
}
```

## Output

```json
{
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "authorHeadline": {
    "label": "Author Headline",
    "format": "string"
  },
  "authorFollowers": {
    "label": "Author Followers",
    "format": "integer"
  },
  "numLikes": {
    "label": "Reactions",
    "format": "integer"
  },
  "numComments": {
    "label": "Comments",
    "format": "integer"
  },
  "numShares": {
    "label": "Shares",
    "format": "integer"
  },
  "datePosted": {
    "label": "Date Posted",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Posts API | Scrape Profile Posts & Engagement](https://apify.com/johnvc/linkedin-posts-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/linkedin-posts-api) to learn more, explore other use cases, and run it yourself.