Search LinkedIn by job title 10 credits

Answer "who is the Head of Growth at that company" without clicking through LinkedIn: pass a title filter, optionally scoped by current_company, and get matching people back with names, positions, and locations. Use past_company instead to reach former holders of a role.

This is linkedin_search_people with its title filter: 10 credits per search, up to 30 results on a paid key.

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/search?title=Head+of+Growth&current_company=vercel" \
  -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_search_people:

tools/call
{
  "method": "tools/call",
  "params": {
    "name": "linkedin_search_people",
    "arguments": {
      "title": "Head of Growth",
      "current_company": "vercel"
    }
  }
}

Parameters#

ParamRequiredTypeDescription
keywordsnostringFree-text query: a name, a title, or both.
first_namenostringFirst-name filter, exact match.
last_namenostringLast-name filter, exact match.
titlenostringCurrent job title filter.
schoolnostringSchool or university name filter.
current_companynostringCompany name, slug, numeric id, or urn:li:fsd_company URN. Names are fuzzy-matched by LinkedIn; ids and URNs filter exactly.
past_companynostringSame accepted forms as current_company; names are resolved to an id server-side.
limitnointegerHow many results to return.
cursornostringCursor from a previous page.
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 people_search envelope. Full field list: /docs/fields#people_search.

Pricing#

linkedin_search_people costs 10 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#

Do I need keywords too?

No. When title is set, keywords derive from it automatically.

Can I filter by location or seniority?

There are no such filters; each result carries the person's location, so filter client-side.

How do I go from a match to a full profile?

Pass the match's identifier to linkedin_get_profile at 4 credits.

Read next#