# SocialFetch LinkedIn Profile Lookup

> SocialFetch LinkedIn Profile 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-15).

Fetches LinkedIn person profile data by profile URL, vanity handle, or handle shorthand (up to 50 profiles per call).

## Facts

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

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-profile-lookup-f8e20c19
```

Example prompt: Can you pull the LinkedIn profile for https://www.linkedin.com/in/satyanadella/ and give me their current job title, company, and summary?

## When to prefer this

Use this endpoint when you need to programmatically retrieve LinkedIn person profile data by URL or handle — ideal for lead enrichment, sales intelligence, recruiting workflows, or contact research where you have one or more known LinkedIn URLs or handles (up to 50 at a time). Prefer this over generic web scrapers when you specifically need structured LinkedIn profile output.

## Known failure modes

- Invalid or non-existent LinkedIn URL/handle returns an error or empty result
- Rate limiting if too many requests are made in quick succession
- Profile may be private or restricted, returning partial data
- Malformed URL or handle format causes a validation error
- LinkedIn anti-scraping measures may occasionally block requests, returning a service error
- Batch exceeding 50 URLs returns a schema validation error

## How this service works

Get LinkedIn person profiles by URL or handle.

## Output

Returns structured LinkedIn person profile data including professional details such as name, headline, current position, employment history, education, skills, and other profile fields available on the public or accessible LinkedIn profile.

## 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 profile URL, vanity handle, `@handle`, or `in/{handle}` path."
       },
       "maxItems": 50,
       "minItems": 1,
       "description": "LinkedIn profile 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-profile-lookup-f8e20c19/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)
