LinkedIn API

LinkedIn Company employees API

List the employees of a LinkedIn company by name or company URL, with optional job-title filtering.

POST/v1/run/linkedin.company_employees
Uptime
98.86%
30d · 525 calls
Requests
533
30d · weekly, last 12 wks
Response
7.1s
median · 30d

Call it

Make your first request

import os, requests

res = requests.post(
    "https://api.getanyapi.com/v1/run/linkedin.company_employees",
    headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"},
    json={
        "company": ""
    },
)
print(res.json())
Open in
Get a free key
Sample response
{
  "data": {
    "items": [
      {
        "firstName": "Alex",
        "handle": "alex_rivera",
        "image": "https://example.com/image.jpg",
        "jobTitle": "Example title",
        "lastName": "Rivera",
        "location": "example",
        "name": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface LinkedinCompanyEmployeesResponse {
  data: {
    items: {
      firstName?: string;
      handle?: string;
      image?: string;
      jobTitle?: string;
      lastName?: 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-17 · uptime and latency measured over 30d
POST /v1/run/linkedin.company_employees
curl -X POST https://api.getanyapi.com/v1/run/linkedin.company_employees \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company":"stripe","limit":3}'
FieldTypeExample value
Request body
companystring"stripe"Company name or LinkedIn company URL (e.g. google or https://www.linkedin.com/company/google/).
jobTitlestringOptional job-title filter supporting boolean operators (e.g. CEO OR CTO).
limitinteger3Maximum number of results to return (1-10, default 10). You are billed per result returned, so a lower limit costs less.
Response
dataobjectThe results wrapper, or null when nothing was found.
data.itemsobject[]Employee records for the company. Populated whenever the provider has data for the entity.
data.items[].firstNamestringFirst name.
data.items[].handlestringPublic profile identifier (the vanity slug in the URL). Populated whenever the provider has data for the entity.
data.items[].imagestringProfile picture URL.
data.items[].jobTitlestringThe employee's current role or headline.
data.items[].lastNamestringLast name.
data.items[].locationstringThe employee's location as a single string (city, region, country).
data.items[].namestringFull name. Populated whenever the provider has data for the entity.
data.items[].urlstringCanonical LinkedIn profile URL. Populated whenever the provider has data for the entity.
foundbooleanTrue when at least one employee was returned.
Price
Price per request (ceiling)USD$0.11
Price /1k resultsUSD$11.00

FAQ

About the LinkedIn Company employees API

The AnyAPI LinkedIn Company employees API returns LinkedIn company employees data as normalized JSON from one POST call to /v1/run/linkedin.company_employees. List the employees of a LinkedIn company by name or company URL, with optional job-title filtering. AnyAPI returns one normalized schema whichever source serves it. It costs $11 per 1,000 results, and never more than $0.11 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 98.9% of LinkedIn company employees calls through AnyAPI succeeded, with a median response time of 7.1 seconds across 525 measured calls.

It costs $11 per 1,000 results, and never more than $0.11 for a single request, 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.

List the employees of a LinkedIn company by name or company URL, with optional job-title filtering. 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, 98.9% of LinkedIn company employees calls through AnyAPI succeeded, with a median response time of 7.1 seconds across 525 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.