# ReadX — X/Twitter Affiliates Lookup

> ReadX — X/Twitter Affiliates Lookup is a paid API for AI agents from readx.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-12).

Fetches the list of affiliate accounts associated with a given X/Twitter username, returning profile details for each affiliate.

## Facts

- Endpoint: GET https://readx.sh/api/%7Bname%7D/affiliates
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-x-twitter-affiliates-lookup-e64e51ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_visSeLFl3-UI_t-mzAXug

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-x-twitter-affiliates-lookup-e64e51ac
```

Example prompt: Can you pull the full list of affiliates for the X/Twitter account 'jack' — I want to see the names, usernames, follower counts, and whether they're verified?

## When to prefer this

Use this endpoint when you need to discover affiliate relationships for a specific X/Twitter user without requiring API keys, paying only $0.03 USDC per call via x402 micropayments on Base or Solana. Prefer this over the official Twitter API when you want keyless access, crypto-native payment, and lightweight JSON responses specifically for affiliate data.

## Known failure modes

- Username not found — returns empty affiliates array or 404-equivalent
- User has no affiliates — returns empty array with user_count 0
- Payment failure via x402 — request blocked if USDC micropayment not completed
- Rate limiting — too many calls in a short window may be rejected
- Invalid username format — malformed name parameter causes error response

## 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 containing the queried username and an array of affiliate accounts, each with fields: id, url, name, userName, followers, following, isVerified, isBlueVerified, and a total user_count.

## 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": "12",
     "bio": "",
     "likes": 0,
     "media": 0,
     "banner": "",
     "tweets": 30000,
     "userPic": "",
     "website": "",
     "fullname": "jack",
     "joinDate": 1142974214,
     "location": "",
     "username": "jack",
     "followers": 6500000,
     "following": 4000,
     "protected": false,
     "suspended": false,
     "pinnedTweet": "0",
     "verifiedType": "Blue"
    }
   ],
   "total_count": 3
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/readx-x-twitter-affiliates-lookup-e64e51ac/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)
