# Linked Panda LinkedIn Profile Enrichment

> Linked Panda 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-14).

Fetches enriched LinkedIn profile data for a given LinkedIn ID, including job title, company, location, follower count, and contact details for B2B lead qualification.

## Facts

- Endpoint: GET https://api.linkedpanda.com/agent/v1/profiles/%7BlinkedinId%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linked-panda-linkedin-profile-enrichment-19501e41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H2nn08RrPm2NamgcoNiRu

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 linked-panda-linkedin-profile-enrichment-19501e41
```

Example prompt: Can you pull the enriched LinkedIn profile for 'alex-example' — I need their current job title, company name, company domain, location, and follower count so I can qualify them as a B2B lead?

## When to prefer this

Choose this endpoint when you need structured, enriched B2B profile data for a specific LinkedIn member identified by their LinkedIn ID or handle. It is ideal for sales intelligence pipelines, CRM enrichment workflows, or ICP scoring where you already know the LinkedIn identifier and need professional details like job title, company domain, and follower count without scraping LinkedIn directly.

## Known failure modes

- LinkedIn ID not found or does not exist — likely 404 or empty result
- Invalid or malformed LinkedIn ID format — may return 400 or validation error
- Profile data not yet indexed or stale — enrichedAt may be outdated
- Payment not processed (x402 protocol failure) — 402 response before data is returned
- Rate limiting or quota exceeded — 429 or similar error

## How this service works

Panda listens to the posts that matter, spots buying conversations with intent signals, and enriches people engaging — while they are still leaning in. No LinkedIn login, cookie, or extension.

## Output

Returns a JSON object with the LinkedIn profile's first name, last name, job title, headline, company name, company domain, location, country, follower count, LinkedIn URL, LinkedIn ID, and the timestamp 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
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "title": "VP Sales",
  "country": "US",
  "headline": "VP Sales at ExampleCo",
  "lastName": "Example",
  "location": "San Francisco Bay Area",
  "firstName": "Alex",
  "enrichedAt": "2026-05-13T08:00:00.000Z",
  "linkedinId": "alex-example",
  "companyName": "ExampleCo",
  "linkedinUrl": "https://www.linkedin.com/in/alex-example/",
  "companyDomain": "example.co",
  "followerCount": 18450
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linked-panda-linkedin-profile-enrichment-19501e41/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)
