# Scrape Founder LinkedIn Posts

**Use case:** 

Extract recent public LinkedIn posts from founder profiles with headlines, dates, links, images, and engagement counts.

## Input

```json
{
  "profileUrls": [
    "williamhgates",
    "satyanadella"
  ],
  "maxProfiles": 2
}
```

## Output

```json
{
  "profileName": {
    "label": "Author"
  },
  "headline": {
    "label": "Headline"
  },
  "postType": {
    "label": "Type"
  },
  "datePublished": {
    "label": "Published"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "postUrl": {
    "label": "URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  }
}
```

## About this Actor

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