# ReadX Tweet Conversation Fetch

> ReadX Tweet Conversation Fetch 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).

Fetches a single tweet along with its full conversation context — including preceding tweets, replies, and thread — by username and tweet ID

## Facts

- Endpoint: GET https://readx.sh/api/:name/tweets/:id
- 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-conversation-fetch-ff60efad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MATzhqx840QBP2An8tomt

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-conversation-fetch-ff60efad
```

Example prompt: Can you pull up the full conversation thread for @jack's tweet with ID 20 on X — including any tweets before it in the thread and all the replies?

## When to prefer this

Use this endpoint when you need the full conversational context around a specific tweet — not just the tweet itself but the thread it belongs to and the replies it received. Ideal for agents that need to understand discourse, trace a Twitter thread from root to branches, or summarize a public conversation. Prefer this over a generic tweet-fetch endpoint when conversation threading and reply context are required.

## Known failure modes

- Tweet ID does not exist or has been deleted — returns 404 or empty result
- Username does not match the tweet author — mismatch error or empty response
- Invalid tweet ID format (non-numeric or too long) — schema validation error
- Rate limiting or payment failure — 402 Payment Required if USDC payment is not attached
- Suspended or private account — tweet data unavailable
- Invalid cursor value — pagination fails or returns unexpected results

## How this service works

A single tweet with its full conversation: tweets before, after and replies. Example: GET /api/jack/tweets/20

## Output

A JSON object containing the target tweet's full content plus the surrounding conversation: tweets that came before it in the thread, replies to it, and pagination cursors for loading more replies if the conversation is long.

## 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)."
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor from a previous response's pagination.next_cursor (the conversation endpoint at /api/{name}/tweets/{id} instead takes its own nested reply cursor — see that endpoint)."
      }
     }
    }
   },
   "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-conversation-fetch-ff60efad/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)
