# Truth Social Profile Scraper

> Truth Social Profile 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-16).

Retrieves public profile information for a given Truth Social username

## Facts

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

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-profile-scraper-6336d360
```

Example prompt: Can you pull up the Truth Social profile for the handle 'realDonaldTrump' — I want to see their bio, follower count, and account details?

## When to prefer this

Use this endpoint when you need to look up public profile information for a specific Truth Social user by their handle. Prefer this over generic web scraping when you need structured profile data from Truth Social specifically, without building custom scrapers or handling anti-bot measures.

## Known failure modes

- Handle not found — user does not exist or account is suspended
- Missing required 'handle' query parameter — returns error
- Truth Social rate limiting or access restrictions — upstream API failure
- Private or restricted account — limited or no data returned
- Network timeout reaching Truth Social servers

## How this service works

Truth Social

## Output

Returns public profile data for the specified Truth Social user, including username, bio, follower count, following count, post count, and other available profile metadata.

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

## More

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