# 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.02/call, status unknown (last checked 2026-09-14).

Scrapes and returns structured data from a LinkedIn company page given its URL

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/linkedin/company
- 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-company-page-scraper-d958c55f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HGM8ofWwv79hzSRN1tvkd

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-d958c55f
```

Example prompt: Can you pull the company page data from LinkedIn for Stripe — their URL is https://www.linkedin.com/company/stripe — I want to see their industry, size, and description?

## When to prefer this

Use this endpoint when you need to programmatically retrieve LinkedIn company profile data — such as industry, employee count, description, or headquarters — without manual browsing. It is well-suited for lead enrichment, competitive intelligence, due diligence workflows, or any agent pipeline that needs structured company metadata from LinkedIn at $0.02 per call.

## Known failure modes

- Invalid or non-existent LinkedIn company URL returns an error or empty result
- LinkedIn rate limiting or access restrictions may cause failed scrapes
- Private or restricted company pages may return partial data
- Malformed URL parameter results in a bad request error
- LinkedIn page structure changes may cause parsing failures

## How this service works

Company Page

## Output

Returns the raw or parsed content of a LinkedIn company page, including fields such as company name, description, industry, company size/employee count, headquarters location, website, company type, and follower count as available from the public LinkedIn page.

## 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": "The URL of the LinkedIn company page to get"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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