# Truth Social Profile Scraper

> Truth Social Profile Scraper 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 public profile data for a given Truth Social username

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/truthsocial/profile
- 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-profile-scraper-60cbb713
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Il-31TycLcimU_3Z0CBHh

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-60cbb713
```

Example prompt: Can you pull up the Truth Social profile for the handle RealDonaldTrump and tell me their follower count, bio, and post count?

## When to prefer this

Choose this endpoint when you specifically need to retrieve public profile data from Truth Social (not Twitter, Twitch, or other platforms). It is the right choice for looking up creator stats, verifying account existence, or enriching a dataset with Truth Social profile metadata by handle. Use this over generic web scraping when you want structured profile output rather than raw HTML.

## Known failure modes

- Handle not found — returns empty or error if the username does not exist on Truth Social
- Private or suspended account — profile data may be unavailable or incomplete
- Rate limiting — too many requests in a short window may result in throttling
- Invalid handle format — non-string or malformed username input causes schema validation failure
- Platform downtime — Truth Social API/site outages may cause fetch failures

## How this service works

Truth Social

## Output

Returns public profile metadata for the specified Truth Social user, including fields such as username, display name, bio/description, follower count, following count, post count, profile image URL, and account creation date.

## 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-60cbb713/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)
