# ReadX Twitter Timeline API

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

Fetches a user's Twitter/X timeline including their tweets, retweets, and quote tweets by handle

## Facts

- Endpoint: GET https://readx.1x402.sh/api/:name
- 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-twitter-timeline-api-ad3fa81d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yQbQ-btSyPlypIXq69rRI

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-twitter-timeline-api-ad3fa81d
```

Example prompt: Can you pull the recent timeline for the X/Twitter account 'elonmusk' — I want their tweets, retweets, and quote tweets?

## When to prefer this

Use this endpoint when you need to programmatically access a specific Twitter/X user's public timeline including tweets, retweets, and quote tweets without managing Twitter API credentials. Ideal for agents that need to monitor or analyze what a particular account is posting, especially when pay-per-call pricing ($0.03 USDC) is preferable to a subscription. Prefer this over scraping or building Twitter integrations from scratch.

## Known failure modes

- Invalid or non-existent X handle returns an error response
- Handle with special characters fails schema validation (only alphanumeric and underscore allowed)
- Invalid pagination cursor causes request to fail or return empty results
- Payment failure (insufficient USDC) results in 402 response before data is returned
- Rate limiting or upstream X API outage causes service unavailability

## How this service works

A user's timeline: tweets, retweets and quotes. Example: GET /api/jack

## Output

Returns a paginated JSON list of the user's tweets, retweets, and quote tweets, including a pagination cursor (bottom) to fetch subsequent pages. The response contains structured tweet objects with content, metadata, and engagement data.

## 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-twitter-timeline-api-ad3fa81d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from readx.1x402.sh](https://www.zero.xyz/host/readx.1x402.sh/llms.txt)
