LinkedIn profile API 4 credits

Give a profile URL, the slug after /in/, or a URN, and get the profile back as structured JSON: name, headline, location, current position, and follower counts, plus up to two sections from about, experience, education, and skills at no extra cost. Messy URLs (utm params, m. subdomains) are cleaned automatically.

The base call costs 4 credits; each section beyond two adds 2 credits (max 4 sections). Data is recent by default; paid keys can force a live fetch with freshness=realtime for 2 credits extra. If you only have a name, start with the people search API and pass its result here.

Try it now#

No account, no card: mint a free key in one call, then call the endpoint.

Terminal
curl -s -X POST https://api.veezee.io/v1/keys/mint
Request
curl "https://api.veezee.io/v1/linkedin/profiles?identifier=williamhgates" \
  -H "Authorization: Bearer $VEEZEE_API_KEY" \
  -H "Idempotency-Key: $(uuidgen)"

Over MCP#

Point an MCP client at https://mcp.veezee.io/linkedin (streamable-http; https://mcp.veezee.io/all serves every platform over one connection) and call linkedin_get_profile:

tools/call
{
  "method": "tools/call",
  "params": {
    "name": "linkedin_get_profile",
    "arguments": {
      "identifier": "williamhgates"
    }
  }
}

Parameters#

ParamRequiredTypeDescription
identifieryesstringProfile URL, slug (after /in/), or urn:li:fsd_profile URN.
sectionsnoarrayExtra profile sections. First 2 are included in the base price.
freshnessnostringrecent (default) serves cached data from the last few hours when available; realtime forces a live fetch for +2 credits (refunded if we fall back to cached data). Trial keys are cached-only and reject realtime with TRIAL_CAP_EXCEEDED; paying upgrades this same key to unlock it.
max_creditsnointegerSpend ceiling for this one call. The call is rejected (nothing charged) if its quote exceeds this. Only the quote is ever reserved, never this ceiling.

Returns a person envelope. Full field list: /docs/fields#person.

Pricing#

linkedin_get_profile costs 4 credits base per call (surcharges for optional sections, cursor pages, and batches are in the full reference). Every key starts with a free budget of 200 credits per IP per day, no account, no card; past that, credits are $2.00 per 1,000 with no subscription required.

FAQ#

Does it return email addresses or phone numbers?

No. It returns what the public profile shows (identity, position, background); no contact details.

Can I search by name with this?

No: it fetches one known profile. linkedin_search_people turns a name into profile identifiers first.

Which sections should I request?

The two you actually need: experience and education cover most enrichment jobs, and two sections ride free on the base call.

Read next#