# Scrape Education From LinkedIn Profiles

**Use case:** 

Pull the education history from LinkedIn profiles: school, school URL, degree, field of study and years attended, alongside name and headline.

## Input

```json
{
  "profileUrls": [
    "williamhgates"
  ],
  "discoverRelated": false,
  "maxRelatedPerProfile": 20,
  "maxProfiles": 100,
  "includeExperience": true,
  "includeEducation": true,
  "includeActivity": false,
  "monitorMode": false,
  "monitorStoreName": "linkedin-profile-monitor",
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "fullName": {
    "label": "Name",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "currentTitle": {
    "label": "Title",
    "format": "text"
  },
  "currentCompany": {
    "label": "Company",
    "format": "text"
  },
  "locationName": {
    "label": "Location",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "connectionCount": {
    "label": "Connections",
    "format": "number"
  },
  "experienceCount": {
    "label": "Roles",
    "format": "number"
  },
  "educationCount": {
    "label": "Schools",
    "format": "number"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  }
}
```

## About this Actor

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