# Truth Social User Posts Scraper

> Truth Social User Posts Scraper is a paid API for AI agents from x402.orth.sh, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches a paginated list of posts from a Truth Social user by handle or user ID

## Facts

- Endpoint: GET https://x402.orth.sh/scrapecreators/v1/truthsocial/user/posts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truth-social-user-posts-scraper-d66cbd8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iyj4ZeUBYfgMKQmfdArFc

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 truth-social-user-posts-scraper-d66cbd8a
```

Example prompt: Pull the latest posts from Trump's Truth Social account (user ID 107780257626128497) — give me the trimmed version so it's not too verbose.

## When to prefer this

Use this endpoint when you need to programmatically retrieve posts from a specific Truth Social user, especially when you know their handle or user ID. Prefer user_id over handle for faster response times. Choose this over general web scraping when you want structured post data with built-in pagination support.

## Known failure modes

- Invalid or non-existent Truth Social handle returns empty or error response
- Invalid user_id format causes request failure
- Rate limiting or Truth Social API unavailability causes timeout or error
- Missing required handle or user_id results in a validation error
- next_max_id cursor expired or invalid causes pagination failure

## How this service works

User Posts

## Output

A list of posts from the specified Truth Social user, including post content and metadata. When trim=true, returns a condensed version. Includes a next_max_id token for paginating to 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",
     "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"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truth-social-user-posts-scraper-d66cbd8a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orth.sh](https://www.zero.xyz/host/x402.orth.sh/llms.txt)
