# PayWeave Twitter – Get User Followers

> PayWeave Twitter – Get User Followers is a paid API for AI agents from twitter.payweave.services, paid per call via x402, $0.00354/call, status unknown (last checked 2026-09-14).

Retrieves a paginated list of follower profiles for a given X/Twitter username

## Facts

- Endpoint: GET https://twitter.payweave.services/users/followers
- Price: $0.00354/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-get-user-followers-45dc0fda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_peOAaKUwytK5GAsdGfCDY

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 payweave-twitter-get-user-followers-45dc0fda
```

Example prompt: Can you fetch the followers of the Twitter account 'naval' — get me up to 200 per page?

## When to prefer this

Choose this endpoint when you need to programmatically retrieve the follower graph of a specific Twitter/X account without managing Twitter API credentials or rate limits yourself. It is ideal for audience research, influencer analysis, or building follower databases, especially when pay-per-call pricing is preferable to a monthly subscription. Use it over direct Twitter API access when you want USDC micropayment billing and no OAuth setup.

## Known failure modes

- Invalid or non-existent username returns an error or empty result
- Rate limits or upstream twitterapi.io throttling causing failures
- pageSize outside the 20–200 range rejected by schema validation
- Invalid or expired next_token cursor returns an error or restarts pagination
- Payment failure via x402 protocol blocks the request

## How this service works

X/Twitter data — tweets, users, communities, lists, articles, and trends.

## Output

Returns a JSON object containing an array of follower user-profile objects (with fields like name, handle, bio, follower counts, etc. as provided by twitterapi.io), a next_cursor string for pagination, and a has_next_page boolean indicating 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "required": [
        "username"
       ],
       "properties": {
        "pageSize": {
         "type": "integer",
         "maximum": 200,
         "minimum": 20,
         "description": "Results per page, 20-200 (default 200). Price scales with this value: 1-3 credits/item depending on tier (200=1cr, 100-199=2cr, 20-99=3cr)."
        },
        "username": {
         "type": "string",
         "minLength": 1,
         "description": "X handle / screen name (without @), e.g. elonmusk."
        },
        "next_token": {
         "type": "string",
         "description": "Pagination cursor from a previous response `next_cursor`. Omit for the first page."
        }
       },
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "users": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "members": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "followers": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "followings": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "next_cursor": {
       "type": "string",
       "description": "Cursor to pass as `next_token` for the next page."
      },
      "has_next_page": {
       "type": "boolean",
       "description": "True when 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-get-user-followers-45dc0fda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.payweave.services](https://www.zero.xyz/host/twitter.payweave.services/llms.txt)
