# LinkedIn Reid Hoffman Posts Scraper

**Use case:** 

Scrape recent LinkedIn posts from Reid Hoffman with post text, author, engagement metrics, and URLs. Export structured results to JSON or CSV.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.linkedin.com/in/reidhoffman/"
    }
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "postType": {
    "label": "Type",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorUrl": {
    "label": "Author URL",
    "format": "link"
  },
  "authorImageUrl": {
    "label": "Author Image",
    "format": "image"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "datePublished": {
    "label": "Date",
    "format": "date"
  },
  "topComments": {
    "label": "Top Comments",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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