# Scrape LinkedIn Profiles in an n8n Workflow

**Use case:** 

Add LinkedIn profile data to an n8n workflow: pass profile URLs, get structured JSON back (name, role, company, experience). Pay per profile.

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