## linkedin/person

`GET /v1/linkedin/person`

The enriched record for one person: headline, summary, location, connections and followers, current role, full work history, education, skills, languages and links. Distinct from linkedin/profile, which answers what the public page shows. Email addresses are never returned.

*LinkedIn person record*

| Parameter | Required | Description |
| --- | --- | --- |
| `handle` | no | Public profile handle (the URL slug) — e.g. `williamhgates` |
| `url` | no | Full profile URL, instead of the handle — e.g. `https://www.linkedin.com/in/williamhgates` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 5 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/linkedin/person?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fwilliamhgates" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "avatar": "https://example.com/example",
  "background_image": "https://example.com/example",
  "certifications": [],
  "current_role": {
    "company": "example",
    "company_handle": "example",
    "company_url": "https://example.com/example",
    "is_current": false,
    "start": "example",
    "title": "example"
  },
  "education": [
    {
      "end": "example",
      "institution": "example",
      "start": "example"
    }
  ],
  "experience": [
    {
      "company": "example",
      "company_handle": "example",
      "company_url": "https://example.com/example",
      "is_current": false,
      "start": "example",
      "title": "example"
    }
  ],
  "first_name": "example",
  "handle": "example",
  "headline": "example",
  "id": "example",
  "languages": [],
  "last_name": "example",
  "location": {
    "city": "example",
    "country": "example",
    "full": "example"
  },
  "name": "example",
  "platform": "example",
  "position_info": {
    "current_employment_verified": false,
    "ordering": "example",
    "positions_returned": 0,
    "positions_with_skills": 0,
    "skills_scope": "example"
  },
  "projects": [],
  "skills": [],
  "summary": "example",
  "top_position": {
    "company": "example",
    "company_handle": "example",
    "company_url": "https://example.com/example",
    "is_current": false,
    "start": "example",
    "title": "example"
  },
  "url": "https://example.com/example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/linkedin/person#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/linkedin/person.json)
