# LinkedIn Company Employees Scraper (No Cookies) via StableApify

> LinkedIn Company Employees Scraper (No Cookies) via StableApify is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status healthy (last checked 2026-09-15, last successful call 2026-09-01).

Scrapes LinkedIn company employee profiles by username without requiring LinkedIn cookies or account credentials, returning structured employee data including job titles and positions.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/apimaestro/linkedin-company-employees-scraper-no-cookies/call
- Price: $0.01/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-01
- Success rate: 100% of calls made through Zero
- Rating: 3.5 / 5 from 2 reviews
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linkedin-company-employees-scraper-no-cookies-via-stableapify-b8f54afa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7UT5MLMZVwfXHxB0P4Bdu

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability linkedin-company-employees-scraper-no-cookies-via-stableapify-b8f54afa -d '<json body>'
```

Example prompt: Scrape up to 100 employee profiles from the LinkedIn company with username 'sarptecimer' — I need their names, job titles, and current positions, and don't include emails.

## When to prefer this

Use this endpoint when you need to extract LinkedIn employee data at scale without exposing your own LinkedIn credentials or cookies. It is preferable over manual LinkedIn browsing or cookie-based scrapers when operating anonymously or in automated pipelines. Best suited for sales prospecting, competitive headcount analysis, or recruiting research where structured employee profile data is needed programmatically.

## Known failure modes

- Invalid or non-existent LinkedIn company username returns empty results or actor error
- Actor run fails if memory allocation is too low for large companies
- Rate limiting or LinkedIn anti-scraping measures may cause incomplete results
- Token expires after ~30 days, preventing late dataset retrieval
- maxItems cap may truncate results for large companies

## How this service works

Start the "Company Employees Scraper for LinkedIn | No Cookies" Apify actor (apimaestro/linkedin-company-employees-scraper-no-cookies). Extract LinkedIn company employees without sharing your cookies or  account. Get structured data including profile details, job titles, and current positions.…

## Output

Returns an actor run object with a run ID, status ('READY'), actor ID, start timestamp, default dataset ID, and a bearer token — which must be used with the dataset fetch endpoint to retrieve the actual scraped employee records once the run completes.

## Example request

```json
{
 "input": {
  "username": "sarptecimer",
  "includeEmail": false
 },
 "options": {
  "memory": 256,
  "maxItems": 100
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "identifier",
    "max_employees",
    "job_title"
   ],
   "properties": {
    "job_title": {
     "type": "string",
     "default": "",
     "description": "Filter employees by job title. Supports boolean operators: use OR for multiple titles (e.g., 'CEO OR CTO'), quotes for exact match (e.g., '\"VP of Engineering\"'), - to exclude (e.g., 'engineer -intern'), and parentheses to group (e.g., '(CEO OR CTO) -intern'). Leave empty to get all employees."
    },
    "identifier": {
     "type": "string",
     "default": "https://www.linkedin.com/company/google/",
     "description": "Company name or LinkedIn URL (e.g., 'google', 'https://www.linkedin.com/company/google/')"
    },
    "max_employees": {
     "type": "integer",
     "default": 100,
     "maximum": 9007199254740991,
     "minimum": 1,
     "description": "Maximum number of employees to return (default: 100). Set to a very large number (e.g., 10000) to fetch all available employees."
    }
   },
   "description": "Normalized actor input. See field descriptions for the simplified shape; native Apify input also accepted (passed through).",
   "additionalProperties": {}
  },
  "options": {
   "type": "object",
   "properties": {
    "build": {
     "type": "string",
     "maxLength": 100,
     "minLength": 1
    },
    "memory": {
     "type": "integer",
     "maximum": 32768,
     "minimum": 128
    },
    "maxItems": {
     "type": "integer",
     "maximum": 100000,
     "minimum": 1
    }
   },
   "description": "Optional Apify run options.",
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linkedin-company-employees-scraper-no-cookies-via-stableapify-b8f54afa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
