# PayWeave Twitter – Get Verified Followers

> PayWeave Twitter – Get Verified 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-14).

Returns a paginated list of verified (blue-check) followers for a given Twitter/X user ID.

## Facts

- Endpoint: GET https://twitter.payweave.services/users/verified-followers
- Price: $0.007/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-verified-followers-d3be000a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HFm1sRMHzAhSzV4r734b9

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-verified-followers-d3be000a
```

Example prompt: Can you pull the list of verified followers for Twitter user ID 44196397? If there are multiple pages, grab the first one for now.

## When to prefer this

Use this endpoint when you need specifically the verified (blue-check) followers of a Twitter/X user, with built-in pagination support. Prefer it over generic follower endpoints when your use case requires filtering for credibility signals, influencer mapping, or brand partnership analysis. The pay-per-call x402 model makes it suitable for ad-hoc or infrequent lookups without a subscription commitment.

## Known failure modes

- Invalid or non-numeric userId returns a validation error
- Private/protected account may return empty results or an authorization error
- Expired or invalid next_token causes pagination failure
- Rate limits from upstream twitterapi.io may result in 429 errors
- User ID does not exist returns a not-found error
- Payment failure (x402) if USDC balance is insufficient

## How this service works

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

## Output

A JSON object containing an array of verified follower user-profile objects (name, handle, bio, follower counts, etc.), a next_cursor string for fetching the next page, and a has_next_page boolean indicating whether additional results exist. Data is forwarded verbatim from twitterapi.io.

## 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": [
        "userId"
       ],
       "properties": {
        "userId": {
         "type": "string",
         "pattern": "^\\d+$",
         "description": "Numeric user ID, e.g. 44196397."
        },
        "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-get-verified-followers-d3be000a/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)
