# SocialFetch LinkedIn Posts Search

> SocialFetch LinkedIn Posts Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15, last successful call 2026-08-02).

Search public LinkedIn posts by keyword or phrase, with optional date filters and pagination.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/linkedin/posts/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-08-02
- Success rate: 100% of calls made through Zero
- Rating: 4.0 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-linkedin-posts-search-1eb30eb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YJsTvLmSTtBnxok_1VzTW

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-posts-search-1eb30eb6
```

Example prompt: Search LinkedIn for public posts mentioning 'generative AI in healthcare' from the last week and show me what people are saying.

## When to prefer this

Use this endpoint when you need to search and retrieve public LinkedIn posts by keyword or topic, especially with recency filters (last hour, day, week, month, or year). Prefer this over general web search when you specifically want LinkedIn professional content and post-level data with pagination support.

## Known failure modes

- Empty results if no public LinkedIn posts match the keyword
- Invalid or expired pagination cursor returns an error
- Query exceeding 512 characters is rejected
- Unsupported datePosted enum value causes a validation error
- Rate limiting or payment failure results in 402 response
- LinkedIn access restrictions may reduce result availability

## How this service works

Search public LinkedIn posts site-wide by keyword (not scoped to one profile or company — use linkedin.profiles.posts.list or linkedin.company.posts.list for that).

## Output

A list of public LinkedIn posts matching the search query, including post content and metadata, with an opaque cursor for fetching the next page of results.

## 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": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1,
       "description": "Keyword or phrase to search for in public LinkedIn posts."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor returned by a previous response."
      },
      "datePosted": {
       "enum": [
        "last-hour",
        "last-day",
        "last-week",
        "last-month",
        "last-year"
       ],
       "type": "string",
       "description": "Optional filter for how recently matching posts were published."
      }
     }
    }
   },
   "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-posts-search-1eb30eb6/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)
