# ReadX Tweet Edit History

> ReadX Tweet Edit History is a paid API for AI agents from readx.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves the full edit history of a tweet, including the current version and all prior revisions, by username and tweet ID.

## Facts

- Endpoint: GET https://readx.sh/api/:name/tweets/:id/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-tweet-edit-history-760fdab9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q2X9QzzDFmeCVic28cPFc

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 readx-tweet-edit-history-760fdab9
```

Example prompt: Can you pull up the full edit history for jack's tweet with ID 20 — I want to see every version it went through, including what it originally said?

## When to prefer this

Use this endpoint when you specifically need to audit, verify, or display the edit history of a known tweet identified by its numeric ID and the author's username. Ideal for fact-checking workflows, journalism tools, or content monitoring systems that need to compare original and revised tweet text.

## Known failure modes

- Tweet ID not found or does not belong to the specified user — returns 404
- Tweet was never edited so only the current version is returned
- Invalid tweet ID format (non-numeric or exceeds 19 digits) — validation error
- Invalid username format (contains disallowed characters) — validation error
- Payment not processed or x402 payment required — returns 402
- Twitter/X API upstream unavailable — returns 503 or timeout

## How this service works

A tweet's edit history: the latest version plus every prior revision. Example: GET /api/jack/tweets/20/history

## Output

Returns a JSON object containing the latest version of the tweet plus an ordered list of all prior revisions, showing how the tweet's content changed over each edit.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name",
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "pattern": "^[0-9]{1,19}$",
       "description": "Numeric tweet id (up to 19 digits)."
      },
      "name": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_]+$",
       "minLength": 1,
       "description": "X handle without the leading @ (alphanumeric and underscore)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/readx-tweet-edit-history-760fdab9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from readx.sh](https://www.zero.xyz/host/readx.sh/llms.txt)
