# Scrape Posts from LinkedIn Profile URLs

**Use case:** 

Use full LinkedIn profile URLs to collect recent post metadata, authors, post types, direct post links, and image URLs.

## Input

```json
{
  "profileUrls": [
    "https://www.linkedin.com/in/williamhgates/"
  ],
  "maxProfiles": 1
}
```

## 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.