LinkedIn Company employees API
List the employees of a LinkedIn company by name or company URL, with optional job-title filtering.
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())
{
"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
}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 30dcurl -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}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| company | string | "stripe"Company name or LinkedIn company URL (e.g. google or https://www.linkedin.com/company/google/). |
| jobTitle | string | Optional job-title filter supporting boolean operators (e.g. CEO OR CTO). |
| limit | integer | 3Maximum number of results to return (1-10, default 10). You are billed per result returned, so a lower limit costs less. |
| Response | ||
| data | object | The results wrapper, or null when nothing was found. |
| data.items | object[] | Employee records for the company. Populated whenever the provider has data for the entity. |
| data.items[].firstName | string | First name. |
| data.items[].handle | string | Public profile identifier (the vanity slug in the URL). Populated whenever the provider has data for the entity. |
| data.items[].image | string | Profile picture URL. |
| data.items[].jobTitle | string | The employee's current role or headline. |
| data.items[].lastName | string | Last name. |
| data.items[].location | string | The employee's location as a single string (city, region, country). |
| data.items[].name | string | Full name. Populated whenever the provider has data for the entity. |
| data.items[].url | string | Canonical LinkedIn profile URL. Populated whenever the provider has data for the entity. |
| found | boolean | True when at least one employee was returned. |
| Price | ||
| Price per request (ceiling) | USD | $0.11 |
| Price /1k results | USD | $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.