# Enrich a LinkedIn profile with salary and career stats

**Use case:** 

Paste one LinkedIn profile URL and get an analyst-grade record: deduplicated and dated positions with employer facts, seniority and department, a salary estimate per role, normalized education, career statistics, and any scholarly or patent records found on the open web. $0.03 per profile, nothing charged if the profile cannot be found.

## Input

```json
{
  "profileUrls": [
    "https://www.linkedin.com/in/satyanadella"
  ],
  "mode": "enrich",
  "forceRefresh": false
}
```

## Output

```json
{
  "input_url": {
    "label": "Profile",
    "format": "string"
  },
  "person.first_name": {
    "label": "First name",
    "format": "text"
  },
  "person.last_name": {
    "label": "Last name",
    "format": "text"
  },
  "person.headline": {
    "label": "Headline",
    "format": "text"
  },
  "person.country": {
    "label": "Country",
    "format": "text"
  },
  "person.career_summary": {
    "label": "Career summary",
    "format": "text"
  },
  "person.career_stats.years_of_experience": {
    "label": "Years",
    "format": "number"
  },
  "person.career_stats.num_positions": {
    "label": "Positions",
    "format": "number"
  },
  "person.career_stats.estimated_lifetime_earnings_usd": {
    "label": "Est. lifetime earnings (USD)",
    "format": "number"
  },
  "person.resource_areas.0": {
    "label": "Resource area 1",
    "format": "text"
  },
  "person.resource_areas.1": {
    "label": "Resource area 2",
    "format": "text"
  },
  "person.resource_areas.2": {
    "label": "Resource area 3",
    "format": "text"
  },
  "person.resource_areas.3": {
    "label": "Resource area 4",
    "format": "text"
  },
  "person.from_cache": {
    "label": "From cache",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "charged": {
    "label": "Charged",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Profile Enrichment: Salary Estimate, Career, Team](https://apify.com/pvalyou/linkedin-person-enrichment.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pvalyou/linkedin-person-enrichment.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
