# 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).

Retrieves the list of Twitter/X accounts that a specific user (@thefintechfund) is following

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/thefintechfund/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-2a749e1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X5co4gwWu2uj_ndZpUvk3

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-2a749e1d
```

Example prompt: Can you get me the list of accounts that @thefintechfund follows on Twitter? Pull the first page and let me know if there are more.

## When to prefer this

Use this endpoint when you specifically need the following list for the @thefintechfund Twitter account. It is ideal for mapping the social graph of this specific fintech-focused account, discovering which accounts they monitor, or building network analysis around fintech influencer connections. Choose this over general Twitter API access when you need a low-friction, pay-per-call approach without managing OAuth credentials.

## Known failure modes

- User account not found or has been suspended — returns error or empty result
- Rate limiting or quota exceeded — endpoint returns 429-like error
- Invalid or expired pagination cursor — may return error or restart from beginning
- Network or proxy failure from twitter.surf service — returns 5xx error
- Account is private and following list is not publicly accessible

## How this service works

User following

## Output

A paginated list of Twitter/X user accounts that @thefintechfund follows, including user profile data for each followed account and a cursor for fetching additional pages.

## Example request

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

## 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",
     "url",
     "name",
     "location",
     "username",
     "description",
     "public_metrics"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "url": {
      "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-2a749e1d/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)
