get_company 4 credits

Fetch one company's LinkedIn page: name, description, industry, employee count, headquarters, website, founding year, specialities, and the URN/numeric id you need for search_people company filters. identifier accepts a company URL, the slug after /company/ (e.g. 'microsoft'), a numeric LinkedIn company id, or a website domain like 'microsoft.com'. Domains are resolved to a company and verified against that company's website: a domain identifier always QUOTES base+4 credits (set max_credits accordingly), and the 4-credit resolution surcharge is refunded at settlement when the domain was resolved before, so known domains settle at the base price. A domain that cannot be verified to a company returns INVALID_INPUT with the closest matches instead of a guessed company. Costs 4 credits base. This tool does not search by name: if you only have an approximate company name, use search_people's current_company filter (it resolves names) or give the exact slug. For the company's posts, use get_posts with the same identifier.

Parameters

ParamRequiredTypeDescription
identifieryesstringCompany URL, slug (after /company/), numeric LinkedIn company id, or website domain (e.g. 'microsoft.com').
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).
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.

REST

GET /v1/companies · auth: required · metered: true

curl "https://api.veezee.io/v1/companies?identifier=microsoft" \
  -H "Authorization: Bearer $VEEZEE_API_KEY" \
  -H "Idempotency-Key: $(uuidgen)"

MCP

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

Input examples

By slug

{
  "identifier": "microsoft"
}

By website domain

{
  "identifier": "microsoft.com"
}

By URL, live

{
  "identifier": "https://www.linkedin.com/company/anthropicresearch/",
  "freshness": "realtime"
}

Output

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

Errors

REST returns application/problem+json; MCP returns the same content as an error result. message is written as the next-turn instruction.

CodeHTTP statusRetriableMeaning
INVALID_INPUT400noA parameter failed validation. Check param and message for what to fix.
NOT_FOUND404noNothing matches the given identifier or URL.
UNAUTHORIZED401noMissing, invalid, or revoked API key.
PROVISION_REQUIRED401noNo key was sent and none is on file. Call provision first.
INSUFFICIENT_CREDITS402noYour balance can't cover this call's quote. Check get_usage or add credits.
QUOTE_EXCEEDS_MAX_CREDITS402noThe call's quote is higher than the max_credits you set. Nothing was charged.
IDEMPOTENCY_KEY_REQUIRED400noThis is a metered call; send an Idempotency-Key header.
IDEMPOTENCY_KEY_REUSED409noThat Idempotency-Key was already used with different arguments. Use a new key for a new call.
CONCURRENCY_LIMIT429yesToo many calls in flight for this key's plan. Wait for one to finish.
RATE_LIMITED429yesToo many calls per minute for this key's plan. Back off and retry.
TRIAL_CAP_EXCEEDED403noA trial-only limit was hit (concurrency, rate, search size, or realtime fetches).
BUDGET_EXHAUSTED503noA configured spend budget has been used up.
UPSTREAM_UNAVAILABLE502yesLinkedIn data wasn't reachable. Safe to retry.
PAYLOAD_TOO_LARGE413noThe request or response exceeded the size limit.
ORIGIN_FORBIDDEN403noThis request's origin isn't allowed to call the API.
INTERNAL500yesSomething failed on our side. Safe to retry.