# LinkedIn Profile Enrichment API

**Use case:** 

Enrich a LinkedIn profile URL into structured fields: role, company, seniority, experience, education, followers. One row per profile, pay per result.

## 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.