# Truth Social User Posts

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

Fetches the posts (truths) published by a given Truth Social user, with pagination support

## Facts

- Endpoint: GET https://x402.orthogonal.com/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-3c81992c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y8qO4VAopokjOhCdKejz7

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-3c81992c
```

Example prompt: Can you pull the latest posts from Trump's Truth Social account (user ID 107780257626128497) so I can see what he's been saying recently?

## When to prefer this

Use this endpoint when you need to retrieve posts from a specific Truth Social user by handle or user ID, especially when you want paginated access to their full post history. Prefer user_id over handle for faster response times. Best suited for monitoring, research, or analysis of Truth Social content without direct API access.

## Known failure modes

- Invalid or non-existent handle returns empty or error response
- Invalid user_id returns an error or empty post list
- Rate limiting or Truth Social blocking may cause failed scrapes
- Missing required 'handle' or 'user_id' parameter causes request failure
- next_max_id cursor expiry leads to pagination errors

## How this service works

User Posts

## Output

Returns a list of posts (truths) from the specified Truth Social user, including post content, metadata, and a pagination cursor (next_max_id) for retrieving subsequent pages. Supports a trimmed response mode for lighter payloads.

## 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-3c81992c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
