# StableSocial Truth Social User Posts Scraper

> StableSocial Truth Social User Posts Scraper 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).

Retrieves posts published by a specific Truth Social user, with optional pagination and response trimming

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/truthsocial/user/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-truth-social-user-posts-scraper-07b5bd64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v4h-C6H6I9u4z9-r_9tsK

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-truth-social-user-posts-scraper-07b5bd64 -d '<json body>'
```

Example prompt: Can you pull the latest posts from the Truth Social account with handle 'realDonaldTrump'? Use the user ID 107780257626128497 for a faster response and give me a trimmed version of the results.

## When to prefer this

Use this endpoint when you need to retrieve posts from a specific Truth Social user and have their handle or user ID. Prefer providing user_id (e.g., 107780257626128497 for Trump) over handle alone for faster response times. Use next_max_id for paginating through large post histories. Choose this over generic web scraping when you want structured, pay-per-request access without managing scraping infrastructure.

## Known failure modes

- Invalid or non-existent handle returns empty results or error
- User account is private or suspended, returning no posts
- Missing both handle and user_id causes request failure
- Invalid next_max_id pagination token returns error or empty page
- Rate limiting or platform-side blocking may return errors
- Malformed request body (wrong bodyType or method) causes validation error

## How this service works

Scrape Creators · Truth Social — User Posts

## Output

Returns a list of posts from the specified Truth Social user, including post content, timestamps, and engagement metadata. When trim is enabled, returns a condensed version of the response. Includes a pagination token (next_max_id) for retrieving subsequent pages of posts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "handle": {
   "type": "string",
   "description": "Truth Social username"
  },
  "user_id": {
   "type": "string",
   "description": "Truth Social user id. Use this for faster response times. Trumps is 107780257626128497. It is the 'id' field in the profile endpoint."
  },
  "next_max_id": {
   "type": "string",
   "description": "Used to paginate to next page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-truth-social-user-posts-scraper-07b5bd64/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)
