# ReadX — Get Following List (Web)

> ReadX — Get Following List (Web) 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 the paginated list of X/Twitter accounts a given user follows, as surfaced on the web (~70 per page, capped at ~800 total).

## Facts

- Endpoint: GET https://readx.sh/api/:name/following_web
- 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-following-list-web-57f76e67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FPN8LWzdlgue9Xls_LkHE

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-following-list-web-57f76e67
```

Example prompt: Can you pull up the full list of accounts that jack follows on X, paginating through all the pages?

## When to prefer this

Use this endpoint when you need to programmatically retrieve the accounts a specific X/Twitter user follows, especially for social graph analysis, influence mapping, or competitor research. Prefer it over scraping X directly since it provides structured JSON with built-in pagination and a predictable pay-per-call cost model. It is capped at ~800 accounts, so for accounts following more than that, expect truncation.

## Known failure modes

- Unknown or suspended X handle returns an error or empty result
- Private/protected accounts may not expose following list
- Pagination cursor mismatch or expired cursor returns an error
- Rate limits or payment failures (HTTP 402) halt further calls
- Account with zero following returns empty list with has_more=false

## How this service works

Accounts a user follows as shown on the web (~70 per page, capped at ~800; paginate with cursor until has_more is false). Example: GET /api/jack/following_web

## Output

A paginated JSON response containing a list of X/Twitter account objects that the specified user follows (approximately 70 per page, capped at ~800 total). Each page includes a pagination object with a next_cursor field and a has_more boolean to drive iteration.

## 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-get-following-list-web-57f76e67/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)
