# ReadX Verified Followers

> ReadX Verified Followers is a paid API for AI agents from readx.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns a paginated list of verified followers for a given X/Twitter username, ~200 per page

## Facts

- Endpoint: GET https://readx.sh/api/:name/verified_followers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readx-verified-followers-1d8e07b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cFCaOjnol46uq0k3U8Vvw

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-verified-followers-1d8e07b5
```

Example prompt: Can you pull the first page of verified followers for the X account 'elonmusk'? Use ReadX and give me their profiles.

## When to prefer this

Use this endpoint when you specifically need the subset of a user's followers who are verified on X/Twitter, rather than all followers. Ideal for audience analysis, influence mapping, or identifying notable accounts in a follower graph. Prefer over a general followers endpoint when verified-only filtering is required.

## Known failure modes

- Invalid or non-existent X handle returns an error or empty result
- Handle contains invalid characters (must match ^[A-Za-z0-9_]+$) returns a 400-level validation error
- Expired or invalid cursor returns an error or resets pagination
- Rate limiting or upstream X API unavailability returns a 429 or 503
- Payment not fulfilled returns 402 Payment Required

## How this service works

A user's verified followers (~200 per page; paginate with cursor until has_more is false). Example: GET /api/jack/verified_followers

## Output

A JSON object containing an array of verified follower profiles (approximately 200 per page), each with user details such as username, display name, bio, and verification status, plus a pagination object with a bottom cursor and a has_more boolean for fetching subsequent pages.

## 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.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-verified-followers-1d8e07b5/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)
