# LinkedIn Company Page Scraper

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

Scrapes a LinkedIn company page by URL and returns structured company details including description, industry, employee count, specialties, revenue estimates, and address.

## Facts

- Endpoint: GET https://x402.orthogonal.com/icypeas/api/scrape/company
- 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-company-page-scraper-575c9581
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jt3JUs4t1wkbtOXeh1y-C

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-page-scraper-575c9581
```

Example prompt: Can you pull the company details for Stripe from their LinkedIn page at https://www.linkedin.com/company/stripe — I need their industry, employee count, specialties, and address?

## When to prefer this

Use this endpoint when you need structured company profile data from LinkedIn — such as employee count, industry, specialties, and address — without maintaining LinkedIn API credentials. Ideal for sales intelligence, CRM enrichment, competitor research, or lead qualification workflows where LinkedIn is the authoritative source. Prefer this over generic web scrapers when you need parsed, structured fields rather than raw HTML.

## Known failure modes

- Invalid or non-existent LinkedIn company URL returns an error or empty result
- LinkedIn may block scraping attempts, causing timeouts or empty responses
- Private or restricted company pages may return incomplete data
- URL must be a valid LinkedIn company URL format; personal profiles or other LinkedIn pages will fail
- Rate limiting or anti-bot measures may occasionally cause failed scrapes

## How this service works

Scrape a LinkedIn company page by URL. Returns company details including description, industry, employee count, specialties, revenue estimates, and address.

## Output

Returns structured company data parsed from the LinkedIn company page, including the company description, industry category, employee count, listed specialties, estimated revenue range, and physical address.

## 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 company URL (e.g. https://www.linkedin.com/company/company-name)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linkedin-company-page-scraper-575c9581/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)
