# Twitter Surf - Verified Followers

> Twitter Surf - Verified 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).

Returns the list of verified followers for a specific Twitter/X user (joeljohn) with pagination support

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/joeljohn/verified_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-3963cf77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZM4rzKBD4s8azokHXwvVq

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-3963cf77
```

Example prompt: Can you pull the list of verified followers for joeljohn on Twitter Surf? Go ahead and paginate through all of them if there are multiple pages.

## When to prefer this

Choose this endpoint when you specifically need the verified (credentialed) followers of the user joeljohn on Twitter/X, and want to leverage the x402 micropayment API without managing full Twitter API credentials yourself. Best for audience research, credibility analysis, or mapping influential followers.

## Known failure modes

- User not found or account suspended — likely 404 or empty result
- Payment not processed (x402 protocol failure) — 402 response
- Rate limiting or quota exceeded — 429 or error response
- Invalid cursor provided — pagination error or unexpected result set
- Network timeout or upstream Twitter API unavailability — 5xx error

## How this service works

Verified followers

## Output

A list of verified (blue-check or organization-verified) Twitter/X accounts that follow the user joeljohn, including profile details such as usernames, display names, and account metadata. Supports cursor-based pagination to retrieve further pages of results.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "cursor": ""
  }
 }
}
```

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "meta"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "name",
     "location",
     "username",
     "description",
     "public_metrics"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "location": {
      "type": "string"
     },
     "username": {
      "type": "string"
     },
     "description": {
      "type": "string"
     },
     "public_metrics": {
      "type": "object",
      "required": [
       "like_count",
       "tweet_count",
       "followers_count",
       "following_count"
      ],
      "properties": {
       "like_count": {
        "type": "number"
       },
       "tweet_count": {
        "type": "number"
       },
       "followers_count": {
        "type": "number"
       },
       "following_count": {
        "type": "number"
       }
      }
     }
    }
   }
  },
  "meta": {
   "type": "object",
   "required": [
    "next_cursor",
    "result_count",
    "has_next_page"
   ],
   "properties": {
    "next_cursor": {
     "type": "string"
    },
    "result_count": {
     "type": "number"
    },
    "has_next_page": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-surf-cascade-fyi-3963cf77/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)
