API reference

LinkedIn Person Record API

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.

Endpoint

GET/v1/linkedin/personlive · proven5 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
handlenoPublic profile handle (the URL slug)williamhgates
urlnoFull profile URL, instead of the handlehttps://www.linkedin.com/in/williamhgates
dry_runnoRead a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution.1

Examples

Make the request

curl
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"
TypeScript
typescript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
  "https://www.monocrawl.com/v1/linkedin/person?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fwilliamhgates",
  { headers: { "x-api-key": key } },
);
const body = await res.json();

if (!body.success) {
  // one error shape for every endpoint — see /docs/errors
  throw new Error(`${body.error.type}: ${body.error.message}`);
}

console.log(body.data, "credits left:", body.credits_remaining);
Python
python
import os
import requests

res = requests.get(
    "https://www.monocrawl.com/v1/linkedin/person?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fwilliamhgates",
    headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
    timeout=60,
)
body = res.json()

if not body["success"]:
    # one error shape for every endpoint — see /docs/errors
    raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")

print(body["data"], "credits left:", body["credits_remaining"])

Response

Response fields and example

This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.

200 · application/json
{
  "success": true,
  "platform": "linkedin",
  "endpoint": "/v1/linkedin/person",
  "data": {
    "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"
  },
  "credits_used": 5,
  "credits_remaining": 99,
  "request_id": "req_…",
  "cached": false
}

The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.

Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.

Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.

Field inside dataTypeMeaning
avatarstring | nullOptional avatar supplied by this operation. Null means unknown.
background_imagestring | nullOptional background image supplied by this operation. Null means unknown.
certificationsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
current_roleobject | nullOptional current role supplied by this operation. Null means unknown.
current_role.companystring | nullOptional company supplied by this operation. Null means unknown.
current_role.company_handlestring | nullOptional company handle supplied by this operation. Null means unknown.
current_role.company_urlstring | nullOptional company url supplied by this operation. Null means unknown.
current_role.is_currentboolean | nullOptional is current supplied by this operation. Null means unknown.
current_role.startstring | nullOptional start supplied by this operation. Null means unknown.
current_role.titlestring | nullSource title when supplied.
educationarray | nullOptional education supplied by this operation. Null means unknown.
education[].endstring | nullOptional end supplied by this operation. Null means unknown.
education[].institutionstring | nullOptional institution supplied by this operation. Null means unknown.
education[].startstring | nullOptional start supplied by this operation. Null means unknown.
experiencearray | nullOptional experience supplied by this operation. Null means unknown.
experience[].companystring | nullOptional company supplied by this operation. Null means unknown.
experience[].company_handlestring | nullOptional company handle supplied by this operation. Null means unknown.
experience[].company_urlstring | nullOptional company url supplied by this operation. Null means unknown.
experience[].is_currentboolean | nullOptional is current supplied by this operation. Null means unknown.
experience[].startstring | nullOptional start supplied by this operation. Null means unknown.
experience[].titlestring | nullSource title when supplied.
first_namestring | nullOptional first name supplied by this operation. Null means unknown.
handlestring | nullOptional handle supplied by this operation. Null means unknown.
headlinestring | nullOptional headline supplied by this operation. Null means unknown.
idstring | nullSource identifier. Preserve the supplied type and exact value.
languagesarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
last_namestring | nullOptional last name supplied by this operation. Null means unknown.
locationobject | nullOptional location supplied by this operation. Null means unknown.
location.citystring | nullOptional city supplied by this operation. Null means unknown.
location.countrystring | nullOptional country supplied by this operation. Null means unknown.
location.fullstring | nullOptional full supplied by this operation. Null means unknown.
namestring | nullOptional name supplied by this operation. Null means unknown.
platformstring | nullOptional platform supplied by this operation. Null means unknown.
position_infoobject | nullOptional position info supplied by this operation. Null means unknown.
position_info.current_employment_verifiedboolean | nullOptional current employment verified supplied by this operation. Null means unknown.
position_info.orderingstring | nullOptional ordering supplied by this operation. Null means unknown.
position_info.positions_returnednumber | nullOptional positions returned supplied by this operation. Null means unknown.
position_info.positions_with_skillsnumber | nullOptional positions with skills supplied by this operation. Null means unknown.
position_info.skills_scopestring | nullOptional skills scope supplied by this operation. Null means unknown.
projectsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
skillsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
summarystring | nullOptional summary supplied by this operation. Null means unknown.
top_positionobject | nullOptional top position supplied by this operation. Null means unknown.
top_position.companystring | nullOptional company supplied by this operation. Null means unknown.
top_position.company_handlestring | nullOptional company handle supplied by this operation. Null means unknown.
top_position.company_urlstring | nullOptional company url supplied by this operation. Null means unknown.
top_position.is_currentboolean | nullOptional is current supplied by this operation. Null means unknown.
top_position.startstring | nullOptional start supplied by this operation. Null means unknown.
top_position.titlestring | nullSource title when supplied.
urlstring | nullOriginal source URL when supplied.

Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.

The example is invented and illustrates types only; zero and empty values are not claims about a real result.

Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.