# PayWeave Twitter – Follower IDs Lookup

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

Returns a paginated list of numeric Twitter/X follower IDs for a given username

## Facts

- Endpoint: GET https://twitter.payweave.services/users/followers/ids
- Price: $0.039825/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-follower-ids-lookup-b12af42e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cdlDLNjFMFZe9fDCm09Sm

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-follower-ids-lookup-b12af42e
```

Example prompt: Can you fetch the follower IDs for the Twitter account @naval — grab up to 5000 per page and give me the first page?

## When to prefer this

Choose this endpoint when you need raw numeric follower IDs for a Twitter/X account and plan to paginate through large follower lists. It is well-suited for bulk audience analysis, follower graph construction, or cross-referencing follower sets. Prefer this over profile-detail endpoints when you only need IDs rather than full user objects, as it is cheaper and faster for high-volume enumeration.

## Known failure modes

- Invalid or non-existent username returns an error or empty list
- Missing required 'username' field causes a schema validation failure
- Count value outside 50–5000 range is rejected
- Expired or invalid next_token cursor returns a pagination error
- Rate limits or upstream twitterapi.io outages may cause 5xx errors
- Payment failure (insufficient USDC) blocks the call with a 402 response

## How this service works

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

## Output

Returns a JSON object containing an array of numeric follower ID strings ('ids'), a 'next_cursor' string for pagination, and a 'has_next_page' boolean indicating whether more results are available. The response 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": [
        "username"
       ],
       "properties": {
        "count": {
         "type": "integer",
         "maximum": 5000,
         "minimum": 50,
         "description": "IDs per page, 50-5000 (default 5000). Price scales with this value: 0.45-2 credits/ID depending on tier (4000-5000=0.45cr, 200-3999=1cr, 50-199=2cr)."
        },
        "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": {
      "ids": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Array of numeric follower ID strings."
      },
      "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": "Follower-ID 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-follower-ids-lookup-b12af42e/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)
