# LinkedPanda Single LinkedIn Profile Enrichment

> LinkedPanda Single 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-13).

Fetches enriched B2B profile data for a single LinkedIn user by their LinkedIn ID, returning name, title, company, location, and follower count.

## Facts

- Endpoint: GET https://api.linkedpanda.com/agent/v1/profiles/:profile
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-linkedpanda-com-666c3c68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q_8cT0LAhvpTjWDQNQGZF

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-666c3c68
```

Example prompt: Can you pull the LinkedIn profile details for the user with LinkedIn ID 'john-smith-b2b42' — I need their current job title, company name, company domain, location, and follower count.

## When to prefer this

Use this endpoint when you need to enrich a single B2B lead's LinkedIn profile with professional details such as job title, company, and location. Prefer this over the bulk endpoint when enriching one profile at a time or in a pipeline that processes leads individually. Choose this over generic web scrapers when you need structured, clean LinkedIn profile data with named fields.

## Known failure modes

- Profile not found — LinkedIn ID does not exist or is misspelled
- Rate limiting or quota exceeded — too many requests in a short period
- Profile is private or inaccessible — returns empty or partial data
- Invalid LinkedIn ID format — malformed path parameter
- Payment failure — insufficient USDC balance for the $0.05 per-call fee

## How this service works

LinkedIn profile enrichment API for one B2B lead

## Output

Returns a JSON object with the enriched LinkedIn profile including firstName, lastName, headline, title, companyName, companyDomain, location, country, followerCount, linkedinUrl, linkedinId, and enrichedAt timestamp for the requested profile.

## 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-666c3c68/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)
