# ReadX — User Timeline with Replies

> ReadX — User Timeline with Replies is a paid API for AI agents from x.1x402.sh, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Fetches a Twitter/X user's timeline including their reply tweets, paginated, identified by handle

## Facts

- Endpoint: GET https://x.1x402.sh/api/:name/with_replies
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-user-timeline-with-replies-79ed5139
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gOYXFqd3n_Bdmot3UEm3Y

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-user-timeline-with-replies-79ed5139
```

Example prompt: Can you pull the full tweet timeline including replies for the X account 'jack' — I want to see everything they've posted and responded to?

## When to prefer this

Use this endpoint when you need a user's tweets AND replies together in a single timeline view, rather than only their original posts. Prefer this over a basic timeline endpoint when you want to understand a user's conversational activity, their engagement with others, or their full public social footprint on X/Twitter.

## Known failure modes

- Unknown or suspended X handle returns 404 or empty result
- Invalid handle format (contains special characters) rejected by pattern validation
- Expired or invalid pagination cursor returns error or resets to first page
- Rate limiting or upstream X API unavailability returns 5xx error
- Payment failure (insufficient USDC balance) blocks the request before execution

## How this service works

A user's timeline including their replies. Example: GET /api/jack/with_replies

## Output

Returns a JSON object containing the user's timeline tweets and replies, including tweet text, metadata, and pagination cursors (bottom cursor) for fetching the next page of results.

## 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"
     ],
     "properties": {
      "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.bottom (or replies.bottom)."
      }
     }
    }
   },
   "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-user-timeline-with-replies-79ed5139/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x.1x402.sh](https://www.zero.xyz/host/x.1x402.sh/llms.txt)
