# Truth Social Post Scraper

> Truth Social Post 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 and returns data from a single Truth Social post given its URL

## Facts

- Endpoint: GET https://x402.orth.sh/scrapecreators/v1/truthsocial/post
- 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-post-scraper-cf723d8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mjwd2p2-lsHcdSUxe1ZgL

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-post-scraper-cf723d8c
```

Example prompt: Can you grab all the details from this Truth Social post — https://truthsocial.com/@realDonaldTrump/posts/123456789 — and tell me what it says, who posted it, and how many likes or reposts it has?

## When to prefer this

Use this endpoint when you need structured data from a specific Truth Social post by URL and do not have direct API access to Truth Social. Ideal for monitoring individual posts, fact-checking content, or extracting post data for analysis. Prefer this over general web scrapers when you need parsed, structured social post data rather than raw HTML.

## Known failure modes

- Invalid or malformed Truth Social URL returns an error
- Post has been deleted or made private, resulting in a not-found response
- Rate limiting or payment failure (x402) blocks the request
- Truth Social changes its internal structure, breaking the scraper
- URL parameter missing causes schema validation error

## How this service works

Post

## Output

Returns structured data about the Truth Social post including the post text, author information, timestamp, and engagement metrics such as likes, replies, and reposts.

## 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": {
      "url": {
       "type": "string",
       "description": "Truth Social post URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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