# Twitter Surf - User Following List

> Twitter Surf - User Following List 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).

Fetches the list of Twitter/X accounts that a specific user (baseapp) is following, with pagination support

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/baseapp/following
- 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-7ec8557b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RcHXYzDIilpIjbPPvXE-W

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-7ec8557b
```

Example prompt: Can you get me the list of accounts that baseapp is following on Twitter/X? Start from the beginning and give me the first page of results.

## When to prefer this

Use this endpoint when you specifically need to retrieve the following list for the baseapp Twitter/X account via the twitter.surf cascade proxy, especially when you need paginated access to following relationships and are willing to pay per-call via x402 micropayment protocol.

## Known failure modes

- User not found or account suspended — empty result or error response
- Rate limiting by the underlying Twitter API — request failure or timeout
- Invalid or expired pagination cursor — may return error or reset to first page
- Payment failure (x402) — request rejected before reaching Twitter API
- Network timeout from the cascade proxy layer

## How this service works

User following

## Output

Returns a paginated list of Twitter/X user accounts that the baseapp user is following, including user profile details for each followed account and a cursor for fetching 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-7ec8557b/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)
