# Marketing Leader LinkedIn Profile Data Collector

**Use case:** 

Extract data on marketing leaders from LinkedIn profiles. Get names, headlines, companies, locations, and follower counts.

## Input

```json
{
  "profiles": [
    "https://www.linkedin.com/in/annhandley/",
    "https://www.linkedin.com/in/seths-blog-b16a/",
    "https://www.linkedin.com/in/davegerhardt/"
  ],
  "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.