# Twitter Surf - User Followers

> Twitter Surf - User Followers is a paid API for AI agents from twitter.surf.cascade.fyi, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Retrieves the list of followers for a specified Twitter/X user via the twitter.surf proxy

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/mybff/followers
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-surf-cascade-fyi-c7a4d82f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dKdroABpbbICNyKZlTeYc

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 twitter-surf-cascade-fyi-c7a4d82f
```

Example prompt: Can you fetch the list of followers for the Twitter account mybff? If there are multiple pages, start from the beginning.

## When to prefer this

Use this endpoint when you need to retrieve the follower list of a specific Twitter/X user (mybff) via the twitter.surf paid proxy. Prefer this over direct Twitter API access when you want a simple pay-per-call model without managing Twitter API credentials. Best for social graph analysis, follower auditing, or building follower-based datasets.

## Known failure modes

- User account not found or does not exist — returns error response
- Account is private/protected and followers are not publicly accessible
- Invalid or expired pagination cursor — returns error or empty result
- Rate limiting or quota exceeded on the twitter.surf proxy — returns 429 or error
- Payment failure via x402 protocol — call not executed

## How this service works

User followers

## Output

A paginated list of Twitter/X users who follow the specified account (mybff), including user profile data for each follower and a cursor for retrieving subsequent pages.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      }
     }
    }
   },
   "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/twitter-surf-cascade-fyi-c7a4d82f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.surf.cascade.fyi](https://www.zero.xyz/host/twitter.surf.cascade.fyi/llms.txt)
