# Product Manager LinkedIn Profiles Scraper

**Use case:** 

Extract detailed information from Product Manager LinkedIn profiles. Receive names, headlines, current companies, locations, and follower counts.

## Input

```json
{
  "profiles": [
    "https://www.linkedin.com/in/melissaperri/",
    "https://www.linkedin.com/in/cagan/",
    "https://www.linkedin.com/in/gibsonbiddle/"
  ],
  "includeRecentActivity": true,
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "currentCompany": {
    "label": "Current company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "isTopVoice": {
    "label": "Top Voice",
    "format": "boolean"
  },
  "linkedinUrl": {
    "label": "LinkedIn URL",
    "format": "link"
  }
}
```

## About this Actor

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