# ReadX — Get Tweet Retweeters

> ReadX — Get Tweet Retweeters 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).

Returns a paginated list of users who retweeted a specific tweet, including their profile details and verification status.

## Facts

- Endpoint: GET https://readx.sh/api/tweets/%7Bid%7D/retweeters
- 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-get-tweet-retweeters-5aed6907
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9FBzTd9MGftvAabbBOmd-

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-get-tweet-retweeters-5aed6907
```

Example prompt: Who retweeted tweet ID 1234567890123456789 on X? Give me the list of users including their follower counts and whether they're verified.

## When to prefer this

Use this endpoint when you need to identify which users retweeted a specific tweet without setting up X API credentials. Ideal for agents performing social listening, engagement analysis, or audience research on X/Twitter at low per-call cost using USDC micropayments on Base or Solana.

## Known failure modes

- Invalid or non-existent tweet ID returns empty or error response
- Tweet has been deleted and retweeter data is unavailable
- Pagination cursor is expired or malformed, causing a failed lookup
- Payment not completed via x402 results in 402 Payment Required response
- Rate limits on the underlying X API causing upstream errors

## 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

A JSON object containing an array of user profiles who retweeted the tweet (each with id, url, name, userName, followers, following, isVerified, isBlueVerified), a has_more boolean, a total user_count, and a next_cursor string for paginating through additional results.

## 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": {
   "users": [
    {
     "id": "99",
     "bio": "",
     "likes": 0,
     "media": 0,
     "banner": "",
     "tweets": 30000,
     "userPic": "",
     "website": "",
     "fullname": "Someone",
     "joinDate": 1142974214,
     "location": "",
     "username": "someone",
     "followers": 599,
     "following": 307,
     "protected": false,
     "suspended": false,
     "pinnedTweet": "0",
     "verifiedType": "Blue"
    }
   ],
   "total_count": 200
  },
  "pagination": {
   "has_more": true,
   "next_cursor": "DAABCgABG...cursor"
  }
 }
}
```

## More

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