# LinkedIn Profile Scraper via Icypeas

> LinkedIn Profile Scraper via Icypeas is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Scrapes a LinkedIn user profile by URL and returns structured data including work experience, education, skills, languages, and contact info.

## Facts

- Endpoint: GET https://x402.orthogonal.com/icypeas/api/scrape/profile
- Price: $0.02/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-scraper-via-icypeas-9c22891c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7_1qyppPvXlTdTIrag2yN

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-scraper-via-icypeas-9c22891c
```

Example prompt: Can you pull the full LinkedIn profile for https://www.linkedin.com/in/satyanadella — I need their work experience, education, skills, and any contact info listed?

## When to prefer this

Choose this endpoint when you need structured, detailed LinkedIn profile data from a known profile URL — particularly for recruiting, sales prospecting, or professional research workflows. It surfaces work history, education, skills, languages, and contact info in one call. Prefer this over general web scrapers when you specifically need LinkedIn-parsed, structured output rather than raw HTML.

## Known failure modes

- Invalid or malformed LinkedIn URL returns an error
- Private or restricted profiles may return incomplete or no data
- LinkedIn rate limiting or anti-scraping measures may cause failures
- Profile URL for a non-existent user returns empty or 404-like response
- Missing required 'url' query parameter causes a validation error

## How this service works

Scrape a LinkedIn user profile by URL. Returns detailed profile data including work experience, education, skills, languages, and contact info.

## Output

Returns a structured JSON object with the LinkedIn user's full profile including: work experience (company names, titles, dates), education (institutions, degrees, dates), skills list, languages spoken, and available contact information such as email or website.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Full LinkedIn profile URL (e.g. https://www.linkedin.com/in/username)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linkedin-profile-scraper-via-icypeas-9c22891c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
