# Extract Startup Founder Profiles from LinkedIn

**Use case:** 

Get detailed profiles of startup founders, including their current company, location, and follower counts, extracted without login or cookies.

## Input

```json
{
  "profiles": [
    "https://www.linkedin.com/in/garrytan/",
    "https://www.linkedin.com/in/paulgraham/",
    "https://www.linkedin.com/in/sama/"
  ],
  "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.