# SocialFetch LinkedIn Profile Posts Lister

> SocialFetch LinkedIn Profile Posts Lister is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.308/call, status unknown (last checked 2026-09-14).

Retrieves a list of public posts from a LinkedIn person profile by URL or vanity handle, with optional date range and authorship filters.

## Facts

- Endpoint: POST https://api.socialfetch.dev/v1/linkedin/profiles/posts
- Price: $0.308/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-linkedin-profile-posts-lister-cd50c6ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Iz-qLL3hHyUcnDH0_i070

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 socialfetch-linkedin-profile-posts-lister-cd50c6ef -d '<json body>'
```

Example prompt: Can you pull the last 20 posts from Satya Nadella's LinkedIn profile (https://www.linkedin.com/in/satyanadella) — only posts he authored himself, from January 1 2025 to today?

## When to prefer this

Use this endpoint when you need to programmatically retrieve a LinkedIn user's public post history, especially for content research, competitive intelligence, lead enrichment, or social listening on a specific professional's activity. Prefer this over general web scraping when you want structured LinkedIn post data without building a custom scraper.

## Known failure modes

- Invalid or private LinkedIn profile URL returns an error or empty result
- Profile has no public posts in the specified date range
- Rate limiting or quota exceeded on the API
- Malformed URL or vanity handle not found
- LinkedIn anti-scraping measures blocking the request temporarily

## Output

A list of public LinkedIn posts from the specified profile, each likely containing post content, timestamps, engagement metadata, and authorship details, filtered by the requested limit and date range.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "LinkedIn profile URL or vanity handle whose public posts should be listed."
      },
      "limit": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "number"
        }
       ],
       "description": "Maximum posts to return (default 10)."
      },
      "endDate": {
       "type": "string",
       "minLength": 1,
       "description": "Optional end of the date range for posts to include."
      },
      "startDate": {
       "type": "string",
       "minLength": 1,
       "description": "Optional start of the date range for posts to include."
      },
      "onlyAuthoredPosts": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "boolean"
        }
       ],
       "description": "When true, return only posts created by the profile owner."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-linkedin-profile-posts-lister-cd50c6ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
