# LinkedIn public profile URL scraper

**Use case:** 

Extract data from exact LinkedIn public profile URLs for recruiting, sales research, and CRM enrichment workflows.

## Input

```json
{
  "profileUrls": [
    "https://www.linkedin.com/in/williamhgates/",
    "https://www.linkedin.com/in/satyanadella/"
  ],
  "maxProfiles": 2
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "linkedinUrl": {
    "label": "LinkedIn URL",
    "format": "link"
  },
  "headline": {
    "label": "Headline"
  },
  "location": {
    "label": "Location"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "connectionCount": {
    "label": "Connections"
  },
  "currentPositions": {
    "label": "Current Positions"
  },
  "education": {
    "label": "Education"
  },
  "profileImageUrl": {
    "label": "Photo",
    "format": "link"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

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