# LinkedPanda LinkedIn Profile Posts Enrichment

> LinkedPanda LinkedIn Profile Posts 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).

Retrieves LinkedIn posts for a specific profile to support B2B lead enrichment and engagement analysis

## Facts

- Endpoint: GET https://api.linkedpanda.com/agent/v1/profiles/posts
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Success rate: 0% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linkedpanda-linkedin-profile-posts-enrichment-d81cc073
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ssrBfHpkJyhpdPUaixVwL

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 linkedpanda-linkedin-profile-posts-enrichment-d81cc073
```

Example prompt: Pull the LinkedIn posts for the profile with ID 'dan-barry27' so I can see what they've been writing about and use it to personalize my outreach.

## When to prefer this

Use this endpoint when you need to retrieve a specific LinkedIn profile's post history for B2B lead research, prospecting, or personalization. Best when you already have a LinkedIn profile ID and want to understand a lead's interests, activity, and thought leadership before outreach. Prefer this over generic web scrapers when you need structured, enriched LinkedIn data with profile metadata attached.

## Known failure modes

- Invalid or non-existent LinkedIn profile ID returns an error or empty result
- Rate limiting or quota exceeded returns a 429 error
- Payment not fulfilled via x402 protocol returns 402 Payment Required
- Profile is private or posts are not publicly accessible, returning no post data
- Malformed input schema missing required 'input' object returns a 400 error

## How this service works

Recent LinkedIn posts for a profile

## Output

Returns a LinkedIn profile's posts along with enriched profile metadata including name, title, headline, location, country, company name, company domain, LinkedIn URL, follower count, and an enrichedAt timestamp — useful for qualifying leads and crafting personalized B2B outreach.

## 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": {
  "results": [],
  "pagination": {
   "pageSize": 0,
   "pageNumber": 1,
   "totalElements": 0,
   "paginationToken": null
  }
 }
}
```

## More

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