# LinkedPanda LinkedIn Profile Lookup

> LinkedPanda LinkedIn Profile Lookup is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.05/call, status healthy (last checked 2026-09-14, last successful call 2026-09-08).

Retrieves an enriched LinkedIn profile record for a given LinkedIn user ID, returning name, headline, company, location, and follower data.

## Facts

- Endpoint: GET https://api.linkedpanda.com/agent/v1/profiles/dan-barry27
- Price: $0.05/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-09-08
- Success rate: 90% of calls made through Zero
- Rating: 5.0 / 5 from 2 reviews
- Activations on Zero: 47
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-linkedpanda-com-13104240
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4gc9BpJ2zU9coibgGBu4h

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-13104240
```

Example prompt: Can you pull up the LinkedPanda profile for the LinkedIn user 'dan-barry27' — I need their current job title, company, location, and follower count for my lead list.

## When to prefer this

Choose this endpoint when you need to look up a single LinkedIn profile by username/ID and want structured enrichment data including company domain and follower count. Best for individual lead enrichment or CRM hydration workflows where you already know the LinkedIn slug. Use the bulk endpoint for batches of up to 25 profiles.

## Known failure modes

- LinkedIn ID not found — profile does not exist or has been deleted
- Invalid or malformed linkedinId path parameter returns 400 error
- Payment not received or x402 payment protocol failure prevents access
- Rate limiting or quota exceeded returns 429 error
- Profile data may be stale if enrichedAt timestamp is old

## How this service works

Retrieves the LinkedPanda profile for dan-barry27.

## Output

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

## Example request

```json
{
 "input": {
  "type": "api_request",
  "method": "GET",
  "pathParams": {
   "linkedinId": "dan-barry27"
  }
 }
}
```

## 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-13104240/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)
