# SocialFetch LinkedIn People Search

> SocialFetch LinkedIn People Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $1.428/call, status unknown (last checked 2026-09-14).

Search LinkedIn profiles by first name and/or last name to find matching people.

## Facts

- Endpoint: POST https://api.socialfetch.dev/v1/linkedin/people/search
- Price: $1.428/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-linkedin-people-search-55f955ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fKX9_3NeehkZN2uT2vkYJ

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-people-search-55f955ba -d '<json body>'
```

Example prompt: Can you search LinkedIn for people named Marcus Chen — I'm trying to find professionals with that name.

## When to prefer this

Use this endpoint when you need to search LinkedIn for people by name, such as for lead generation, background research, identifying professionals, or verifying someone's LinkedIn presence. Prefer this over general web search when you specifically want structured LinkedIn profile data keyed on a person's name.

## Known failure modes

- Neither firstName nor lastName provided — returns validation error
- Name not found on LinkedIn — returns empty results list
- Rate limiting or payment failure — returns 402 or 429 error
- Extremely common names may return large or paginated result sets
- LinkedIn data may be stale or incomplete

## Output

A list of LinkedIn people profiles matching the provided first and/or last name, including profile details such as name, headline, and other publicly available LinkedIn 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": {
      "lastName": {
       "type": "string",
       "maxLength": 128,
       "description": "Last name filter. At least one of `firstName` or `lastName` is required."
      },
      "firstName": {
       "type": "string",
       "maxLength": 128,
       "description": "First name filter. At least one of `firstName` or `lastName` is required."
      }
     }
    }
   },
   "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-people-search-55f955ba/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)
