# PayWeave Twitter – List Followers

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

Fetches the paginated list of followers for a specific Twitter/X list by its numeric list ID

## Facts

- Endpoint: GET https://twitter.payweave.services/lists/followers
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-list-followers-6e45d7aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SdHfhFNXIM18OuHZNGM7D

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-list-followers-6e45d7aa
```

Example prompt: Can you pull the followers of Twitter list 1693573582226665701 — give me the first page of user profiles that follow it?

## When to prefer this

Choose this endpoint when you need the paginated list of user profiles who follow a specific Twitter/X list and you already have the numeric list ID. It is a pay-per-call endpoint billed at $0.007 USDC via x402, making it cost-effective for one-off or infrequent lookups without a subscription. Prefer it over direct Twitter API access when you lack Twitter API credentials or want a simple per-call billing model.

## Known failure modes

- Invalid or non-numeric list ID returns an error or empty result
- List does not exist or has been deleted — upstream API error forwarded
- Invalid next_token cursor causes pagination failure
- Payment not processed (x402 flow incomplete) — call is rejected before reaching upstream
- Rate limits on the underlying twitterapi.io provider cause temporary failures
- Private or restricted lists may return empty or unauthorized responses

## How this service works

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

## Output

Returns a JSON object containing an array of Twitter/X user-profile objects under the 'followers' key, a 'next_cursor' string for fetching subsequent pages, and a 'has_next_page' boolean indicating whether more results exist. The user objects are forwarded verbatim from twitterapi.io and include standard profile fields.

## 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": [
        "id"
       ],
       "properties": {
        "id": {
         "type": "string",
         "pattern": "^\\d+$",
         "description": "Numeric ID, e.g. 1693573582226665701"
        },
        "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 more pages are available."
      }
     },
     "description": "User list JSON forwarded verbatim from twitterapi.io.",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-list-followers-6e45d7aa/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)
