LinkedIn API

LinkedIn Search companies API

Search LinkedIn companies by keyword with optional location filtering, returning normalized company records.

POST/v1/run/linkedin.search_companies
Uptime
100.00%
30d · 275 calls
Requests
276
30d · weekly, last 12 wks
Response
2.4s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "description": "A short example description of this item.",
        "followersText": "A short example description of this item.",
        "handle": "alex_rivera",
        "id": "a1b2c3d4",
        "image": "https://example.com/image.jpg",
        "industry": "general",
        "location": "example",
        "name": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface LinkedinSearchCompaniesResponse {
  data: {
    items: {
      description?: string;
      followersText?: string;
      handle?: string;
      id: string;
      image?: string;
      industry?: string;
      location?: string;
      name: string;
      url: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/linkedin.search_companies
curl -X POST https://api.getanyapi.com/v1/run/linkedin.search_companies \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":3,"query":"fintech"}'
FieldTypeExample value
Request body
querystring"fintech"Keyword to search LinkedIn companies for (e.g. marketing agency).
limitinteger3Maximum number of results to return (1-20, default 20).
locationstringOptional location filter, written out in full (e.g. United Kingdom or San Francisco).
Response
dataobjectThe results wrapper, or null when nothing was found.
data.itemsobject[]Matching company records. Populated whenever the provider has data for the entity.
data.items[].descriptionstringCompany summary / about text. Populated whenever the provider has data for the entity.
data.items[].followersTextstringFollower count as a display string (e.g. 105K followers). Populated whenever the provider has data for the entity.
data.items[].handlestringCompany universal name (the vanity slug in the URL). Populated whenever the provider has data for the entity.
data.items[].idstringLinkedIn company id. Populated whenever the provider has data for the entity.
data.items[].imagestringCompany logo image URL. Populated whenever the provider has data for the entity.
data.items[].industrystringCompany industry. Populated whenever the provider has data for the entity.
data.items[].locationstringCompany location as a single string (city, region). Populated whenever the provider has data for the entity.
data.items[].namestringCompany name. Populated whenever the provider has data for the entity.
data.items[].urlstringCanonical LinkedIn company URL. Populated whenever the provider has data for the entity.
foundbooleanTrue when at least one company was returned.
Price
Price per requestUSD$0.005
Price /1k reqUSD$5.00

FAQ

About the LinkedIn Search companies API

The AnyAPI LinkedIn Search companies API returns LinkedIn search companies data as normalized JSON from one POST call to /v1/run/linkedin.search_companies. Search LinkedIn companies by keyword with optional location filtering, returning normalized company records. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $5 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of LinkedIn search companies calls through AnyAPI succeeded, with a median response time of 2.4 seconds across 275 measured calls.

It costs from $5 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Search LinkedIn companies by keyword with optional location filtering, returning normalized company records. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of LinkedIn search companies calls through AnyAPI succeeded, with a median response time of 2.4 seconds across 275 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.