# ReadX Followers List

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

Fetches a paginated list of followers for a given X (Twitter) user handle, returning ~200 followers per page

## Facts

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

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-followers-list-a5e7646a
```

Example prompt: Can you pull the followers list for the X account 'elonmusk' using ReadX — start from the beginning and grab the first page of results?

## When to prefer this

Use this endpoint when you need programmatic, paginated access to the follower list of any public X (Twitter) account without managing Twitter API credentials. Prefer it over direct Twitter API access when you want a simple pay-per-call model via USDC and need JSON follower data for social graph analysis, audience research, or influencer evaluation.

## Known failure modes

- Invalid or non-existent X handle returns an error or empty result
- Expired or invalid pagination cursor causes an error or resets pagination
- Rate limiting or payment failure returns a 402 or 429 error
- Private or suspended accounts may return no followers or an access error
- Malformed handle (e.g. includes @ symbol or special characters) fails schema validation

## How this service works

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

## Output

Returns a JSON object containing a list of approximately 200 follower profiles for the specified X user, along with pagination metadata including a bottom cursor and a has_more boolean to indicate whether additional pages exist.

## 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-followers-list-a5e7646a/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)
