# LinkedIn Company Details Scraper (Bulk, No Cookies)

> LinkedIn Company Details Scraper (Bulk, No Cookies) is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Starts an Apify actor run that scrapes detailed information from LinkedIn company profiles by username, returning company name, address, phone, website, employee count, and more.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/harvestapi/linkedin-company/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linkedin-company-details-scraper-bulk-no-cookies-974afb90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qb9W_s9h43iqNLG-QMeHP

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-details-scraper-bulk-no-cookies-974afb90 -d '<json body>'
```

Example prompt: Can you pull the LinkedIn company details for 'openai' — I need their address, phone numbers, website, and employee count? Don't bother including emails.

## When to prefer this

Choose this endpoint when you need structured LinkedIn company profile data (address, phone, employee count, website) without managing cookies or LinkedIn sessions yourself, especially for bulk or automated enrichment pipelines. Prefer it over manual scraping or LinkedIn API (which requires OAuth) when you want pay-per-call simplicity via x402 and don't need real-time results.

## Known failure modes

- Invalid or non-existent LinkedIn username returns empty dataset
- Actor run fails to start due to memory constraints if allocation is too low
- Rate limiting or LinkedIn anti-bot detection may cause incomplete results
- Token expiry (30-day JWT) prevents dataset access if results are fetched too late
- Payment failure via x402 protocol blocks actor invocation

## How this service works

Start the "Linkedin Company Details Scraper (No Cookies) ✅ Bulk" Apify actor (harvestapi/linkedin-company). Extract detailed information from LinkedIn Companies such as company name, address, phone numbers, website, employee count, and more. Find LinkedIn company URL…

## Output

Returns a run object containing a run ID, status (READY), actor ID, start timestamp, total USD usage, and a default dataset ID, plus a JWT access token used to fetch the scraped company data from the dataset once the run completes.

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "searches": {
     "type": "array",
     "items": {
      "type": "string"
     },
     "description": "List of company names to search on LinkedIn"
    },
    "companies": {
     "type": "array",
     "items": {
      "type": "string"
     },
     "description": "List of LinkedIn company URLs"
    }
   },
   "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-details-scraper-bulk-no-cookies-974afb90/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)
