# LinkedIn company API - Veezee

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.

```
curl -s -X POST https://api.veezee.io/v1/keys/mint
```

```
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`:

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

## Parameters

| Param | Required | Type | Description |
| --- | --- | --- | --- |
| `identifier` | yes | `string` | Company 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. |
| `freshness` | no | `string` | recent (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_credits` | no | `integer` | Spend 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: https://veezee.io/docs/fields#company

## Pricing

`linkedin_get_company` costs 4 credits base per call (surcharges for optional sections, cursor pages, and batches: https://veezee.io/docs/tools/linkedin_get_company). 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](https://veezee.io/docs/tools/linkedin_search_people) as a company filter.

## Read next

- [linkedin_get_company: the full reference](https://veezee.io/docs/tools/linkedin_get_company)
- [Company research recipe](https://veezee.io/use-cases/company-research)
- [LinkedIn API for AI agents](https://veezee.io/linkedin-api-for-ai-agents)
- [Pricing](https://veezee.io/pricing)
