# SocialFetch LinkedIn Organization Lookup

> SocialFetch LinkedIn Organization Lookup is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.028/call, status unknown (last checked 2026-09-13).

Fetch public profile data for LinkedIn companies, schools, or organizations by their LinkedIn page URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/linkedin/organizations
- Price: $0.028/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-linkedin-organization-lookup-f5d3860e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fTuY6CLrjG_s0R9kMdfaK

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 socialfetch-linkedin-organization-lookup-f5d3860e
```

Example prompt: Can you pull the LinkedIn company page details for OpenAI — their URL is linkedin.com/company/openai — I want to see their industry, headcount, and description.

## When to prefer this

Use this endpoint when you need structured data from a specific LinkedIn organization page and already have the LinkedIn URL. Prefer this over linkedin.company.get when dealing with schools, non-profits, or organization-guest URLs in addition to standard companies. Ideal for enriching CRM records, researching company backgrounds, or verifying organization details at scale (up to 50 URLs per call).

## Known failure modes

- URL does not match a /company/, /school/, or /organization-guest/company/ path — returns validation error
- LinkedIn page is private or does not exist — returns 404 or empty result
- Rate limiting or LinkedIn anti-scraping measures — returns error or timeout
- Invalid URL format — input validation failure
- Batch exceeds 50 URLs — request rejected

## How this service works

Look up LinkedIn company, school, or organization pages by URL (broader than linkedin.company.get).

## Output

Returns structured data from the LinkedIn organization page including company name, description, industry, employee count range, headquarters location, website, logo URL, founding year, and other publicly available profile fields.

## 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": "array",
       "items": {
        "type": "string",
        "maxLength": 4096,
        "minLength": 1,
        "description": "LinkedIn organization page URL with a `/company/`, `/school/`, or `/organization-guest/company/` path."
       },
       "maxItems": 50,
       "minItems": 1,
       "description": "LinkedIn organization page URL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-linkedin-organization-lookup-f5d3860e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
