# LinkedIn Profile Detail Scraper (No Cookies)

> LinkedIn Profile Detail Scraper (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-14).

Scrapes comprehensive LinkedIn profile data—work experience, education, certifications, location, and optionally email—for a given LinkedIn username without requiring cookies.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/apimaestro/linkedin-profile-detail/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linkedin-profile-detail-scraper-no-cookies-7ce2fdd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9gwRXsvUsr82MO0tOSZ6i

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-profile-detail-scraper-no-cookies-7ce2fdd5 -d '<json body>'
```

Example prompt: Can you scrape the LinkedIn profile for username 'sarptecimer' and pull their full work experience, education history, certifications, and location details?

## When to prefer this

Choose this endpoint when you need structured LinkedIn profile data (work history, education, certifications, location) for a known LinkedIn username without managing LinkedIn cookies or authentication. Prefer this over browser-based scrapers when you want a serverless, pay-per-call solution that handles LinkedIn's anti-bot measures. Best for single-profile lookups; for bulk jobs scraping, consider the dedicated LinkedIn Jobs Scraper sibling endpoint.

## Known failure modes

- Invalid or non-existent LinkedIn username returns empty dataset
- LinkedIn rate limiting or anti-scraping measures may cause incomplete results
- Insufficient memory allocation (too low) may cause actor failure
- Email not always available; includeEmail:true does not guarantee an email is returned
- Run may remain in READY/RUNNING state longer than expected under load

## How this service works

Start the "Profile Details Scraper for LinkedIn + EMAIL (No Cookies)" Apify actor (apimaestro/linkedin-profile-detail). Scrape comprehensive LinkedIn profile data including work experience, education history, certifications, and location details. Get structured information from…

## Output

Returns an Apify run object (run ID, status, actor ID, start timestamp, dataset ID, usage cost) plus a signed JWT token used to fetch the scraped profile data from the resulting dataset. The actual profile data—work experience, education, certifications, location—is retrieved separately using the dataset ID and token.

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "username",
    "includeEmail"
   ],
   "properties": {
    "username": {
     "type": "string",
     "default": "sarptecimer",
     "description": "LinkedIn profile username (e.g., 'neal-mohan' from linkedin.com/in/neal-mohan) or URL or Urn (e.g: ACoAAAPCNL4BRjB2mlrFKePwdFvNMtb2ekzpEWw)"
    },
    "includeEmail": {
     "type": "boolean",
     "default": false,
     "description": "Whether to include email address in the profile data extraction if available"
    }
   },
   "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-profile-detail-scraper-no-cookies-7ce2fdd5/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)
