# LinkedIn Company Posts Scraper

**Use case:** 

Extract recent public LinkedIn company posts with text, headlines, dates, authors, and post URLs.

## Input

```json
{
  "companyUrls": [
    "https://www.linkedin.com/company/google/",
    "https://www.linkedin.com/company/microsoft/"
  ],
  "maxPostsPerCompany": 20,
  "maxCompanies": 5
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "text": {
    "label": "Post Text",
    "format": "string"
  },
  "postType": {
    "label": "Type",
    "format": "string"
  },
  "datePublished": {
    "label": "Published",
    "format": "string"
  },
  "postUrl": {
    "label": "URL",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  }
}
```

## About this Actor

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