# StableSocial LinkedIn Post Search

> StableSocial LinkedIn Post Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Search public LinkedIn posts by keyword or phrase with optional date filtering and cursor-based pagination

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/linkedin/search/posts
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-linkedin-post-search-b7e28a8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4oIxQdX8_R6K0HDAUJO1x

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 stablesocial-linkedin-post-search-b7e28a8c -d '<json body>'
```

Example prompt: Search LinkedIn posts from the last week mentioning 'generative AI in finance' and give me the top results.

## When to prefer this

Use this endpoint when you need pay-per-request, no-subscription access to LinkedIn post search without managing OAuth or LinkedIn API credentials. Ideal for agents that need occasional LinkedIn post discovery rather than high-volume continuous access, and when budget control per call matters.

## Known failure modes

- Empty results if no public LinkedIn posts match the query or date filter
- Invalid cursor value causing pagination failure
- Rate limiting or payment failure resulting in a 402 response
- Overly broad queries returning noisy or irrelevant posts
- Date filter restricting results to zero posts for niche topics

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

A list of public LinkedIn posts matching the search query, including post content and metadata, along with a pagination cursor for fetching subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Keyword or phrase to search for in public LinkedIn posts"
  },
  "cursor": {
   "type": "string",
   "description": "The cursor returned from the previous response"
  },
  "date_posted": {
   "enum": [
    "last-hour",
    "last-day",
    "last-week",
    "last-month",
    "last-year"
   ],
   "type": "string",
   "description": "Date posted filter based on Google-indexed results"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-linkedin-post-search-b7e28a8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
