LinkedIn company API 4 credits

Fetch one company's LinkedIn page as structured JSON: name, description, industry, employee count, headquarters, website, founding year, and specialities, plus the URN and numeric id that scope a people search to that company. The identifier is a company URL, the slug after /company/, or a website domain.

The base call costs 4 credits. A domain identifier quotes 8 credits, and the resolution surcharge is refunded at settlement for already-known domains.

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/companies?identifier=microsoft" \
  -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_company:

tools/call
{
  "method": "tools/call",
  "params": {
    "name": "linkedin_get_company",
    "arguments": {
      "identifier": "microsoft"
    }
  }
}

Parameters#

ParamRequiredTypeDescription
identifieryesstringCompany URL, slug (after /company/), or website domain (e.g. 'microsoft.com'). Numeric ids/URNs are not fetchable; use them only in linkedin_search_people company filters.
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 company envelope. Full field list: /docs/fields#company.

Pricing#

linkedin_get_company 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#

Can I fetch by company name?

Not directly: pass a URL, slug, or domain. A bare name resolves through linkedin_search_people's current_company filter instead.

Does it include job listings or funding rounds?

No: the company's own profile fields only.

How do I find employees of the company?

Feed the returned id or URN into linkedin_search_people as a company filter.

Read next#