# LinkedIn Profile Scraper

**Use case:** 

Use profileUrls with https://www.linkedin.com/in/satyanadella and billgates to collect public LinkedIn profile details. The task returns dataset rows for resolved profiles with separate Open Profile and #OpenToWork statuses, confidence, reasons, and available fields such as name, headline, summary, work history, education, languages, recommendations, volunteering, audience, and account data.

## Input

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

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  },
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "openProfileStatus": {
    "label": "Open Profile status",
    "format": "object"
  },
  "openToWorkStatus": {
    "label": "Open to Work status",
    "format": "object"
  },
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "experience": {
    "label": "Employment history",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "languages": {
    "label": "Languages",
    "format": "array"
  },
  "recommendations": {
    "label": "Recommendations",
    "format": "array"
  },
  "volunteering": {
    "label": "Volunteering",
    "format": "array"
  },
  "audience": {
    "label": "Audience",
    "format": "object"
  },
  "account": {
    "label": "Account",
    "format": "object"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/maximedupre/linkedin-open-profile-status.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
