# LinkedPanda LinkedIn Profile Enrichment

> LinkedPanda LinkedIn Profile Enrichment is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15, last successful call 2026-07-17).

Fetches enriched LinkedIn profile data for a single B2B lead given their LinkedIn ID

## Facts

- Endpoint: GET https://api.linkedpanda.com/agent/v1/profiles/:linkedinId
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-17
- Success rate: 100% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-linkedpanda-com-1c554d2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pIjYDv91NLtwRU0kMXMPW

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 api-linkedpanda-com-1c554d2d
```

Example prompt: Look up the LinkedIn profile for the person with LinkedIn ID 'john-smith-b2a3c4' and give me their job title, company, company domain, location, and follower count so I can qualify them as a B2B lead.

## When to prefer this

Use this endpoint when you need enriched professional profile data for a single known LinkedIn user by their LinkedIn ID. Prefer this over bulk endpoints when processing one lead at a time or when you need fast, synchronous results for a specific contact. It is well-suited for real-time lead qualification workflows where you already have the LinkedIn ID.

## Known failure modes

- Invalid or non-existent linkedinId returns a 404 or empty result
- Payment not fulfilled triggers a 402 Payment Required response via x402 protocol
- Rate limiting may occur for rapid sequential calls
- LinkedIn profile may be private or restricted, returning partial data
- Stale enrichment data if the profile has changed recently

## How this service works

LinkedIn profile enrichment API for one B2B lead

## Output

Returns a structured profile object with the person's first name, last name, current job title, headline, location, country, company name, company domain, LinkedIn URL, follower count, and the timestamp of when the profile was enriched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "linkedinId": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "title": {
       "type": "string"
      },
      "country": {
       "type": "string"
      },
      "headline": {
       "type": "string"
      },
      "lastName": {
       "type": "string"
      },
      "location": {
       "type": "string"
      },
      "firstName": {
       "type": "string"
      },
      "enrichedAt": {
       "type": "string"
      },
      "linkedinId": {
       "type": "string"
      },
      "companyName": {
       "type": "string"
      },
      "linkedinUrl": {
       "type": "string"
      },
      "companyDomain": {
       "type": "string"
      },
      "followerCount": {
       "type": "number"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  }
 },
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-linkedpanda-com-1c554d2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.linkedpanda.com](https://www.zero.xyz/host/api.linkedpanda.com/llms.txt)
