# ReadX Tweet History

> ReadX Tweet 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 edit/version history of a specific tweet by its ID via pay-per-call micropayment API

## Facts

- Endpoint: GET https://readx.sh/api/%7Bname%7D/tweets/%7Bid%7D/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-history-7b4ab661
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PBT64YN8DDZOfFwde19Xh

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-history-7b4ab661
```

Example prompt: Can you pull the full edit history for tweet ID 1234567890 from user @elonmusk on X — I want to see all the versions of that tweet since it was first posted.

## When to prefer this

Use this endpoint when you need to audit or inspect the edit history of a specific tweet and know both the username and tweet ID. Prefer this over general tweet lookup endpoints when the goal is specifically to trace changes or verify original content vs. edited content. Ideal for fact-checking, content auditing, or journalism workflows where tweet mutation is relevant. No API keys required — only USDC micropayment via x402.

## Known failure modes

- Tweet ID not found — returns error code with empty data
- Username does not match tweet owner — mismatch error
- Tweet has no edit history (never edited) — may return single-entry or empty history
- Payment failure via x402 micropayment — 402 Payment Required response
- Rate limiting or service unavailability — non-zero error code in response
- Invalid tweet ID format — malformed request error

## How this service works

ReadX is a read-only X/Twitter JSON API. Profiles, timelines, tweets, search, lists, followers &amp; following — pay per call with x402 micropayments in USDC on Base or Solana. No API keys.

## Output

Returns a JSON object with code 0 and a data payload containing the version/edit history of the specified tweet, including previous versions of the tweet content and metadata about when edits occurred.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/readx-tweet-history-7b4ab661/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)
