# Scrape LinkedIn Profiles to Structured JSON

**Use case:** 

Turn public LinkedIn profile URLs into clean JSON: name, headline, company, title, experience, education, followers. Pay per profile, MCP-ready.

## Input

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

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "currentCompany": {
    "label": "Current Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "publicUrl": {
    "label": "Public URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Profile API | Scrape Public Profile Data](https://apify.com/johnvc/linkedin-profile-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/linkedin-profile-api) to learn more, explore other use cases, and run it yourself.