# Satya Nadella LinkedIn Posts Extractor

**Use case:** 

Extract recent public LinkedIn posts from a specific profile URL or slug into a structured dataset.

## Input

```json
{
  "profileUrls": [
    "https://www.linkedin.com/in/satyanadella/recent-activity/all/"
  ],
  "postUrls": [],
  "maxPostsPerProfile": 15,
  "maxItems": 15,
  "proxyCountryCode": "US"
}
```

## Output

```json
{
  "profileName": {
    "label": "Profile"
  },
  "profileSlug": {
    "label": "Slug"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "datePublished": {
    "label": "Published"
  },
  "likeCount": {
    "label": "Likes"
  },
  "commentCount": {
    "label": "Comments"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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