# LinkedIn Thought Leader Post Tracker

**Use case:** 

Scrape and analyze recent public posts from influential LinkedIn profiles. Get structured data on text, likes, comments, and publish dates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.linkedin.com/in/satyanadella"
    }
  ],
  "maxItems": 20
}
```

## Output

```json
{
  "author": {
    "label": "Author"
  },
  "headline": {
    "label": "Headline"
  },
  "text": {
    "label": "Text"
  },
  "datePublished": {
    "label": "Date",
    "format": "date"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Profile Posts Scraper (no cookies)](https://apify.com/myagizm/linkedin-profile-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/myagizm/linkedin-profile-posts-scraper) to learn more, explore other use cases, and run it yourself.