# VIBE Twitter User Following List

> VIBE Twitter User Following List is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves a paginated list of Twitter accounts that a given user follows, paid per-call via USDC on Base with no API keys required.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/user/%7Buser_id%7D/following
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-twitter-user-following-list-bcf898ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9ZI4DZqzIhmxB95X6otJA

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 vibe-twitter-user-following-list-bcf898ce
```

Example prompt: Can you pull the full list of Twitter accounts that user ID 123456789 is following, using VIBE's x402 endpoint — I want their profile details including username, bio, and verified status?

## When to prefer this

Choose this endpoint when you need Twitter following-list data without setting up a Twitter Developer account or managing API keys, and you are comfortable paying $0.005 USDC per call on Base via the x402 protocol. Ideal for crypto-adjacent research workflows where USDC micropayments are already part of the stack, or when building agent pipelines that need social graph data alongside VIBE's smart money and Nansen analytics endpoints on the same platform.

## Known failure modes

- Invalid or non-existent user_id returns empty results or 404-equivalent error
- Expired or invalid next_token causes pagination failure
- Insufficient USDC balance on Base causes payment rejection before data is returned
- Twitter/X API rate limits on the backend may cause temporary 429-style throttling
- Private/protected Twitter accounts may return restricted or empty following lists
- Malformed user_id (non-numeric) may cause request validation failure

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

Returns a paginated array of Twitter profile objects for each account the specified user follows, including each account's ID, display name, username, bio description, verified badge status, and profile image URL. Also includes a next_token for fetching subsequent pages (null on the last page), the total count of accounts returned, the USDC amount charged, and the EIP-3009 payment transaction hash on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "tx_hash": {
       "type": "string",
       "description": "EIP-3009 payment transaction hash on Base"
      },
      "following": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Following profiles: id, name, username, description, verified, profile_image_url"
      },
      "next_token": {
       "type": "string",
       "description": "Pagination token for next page (null if last page)"
      },
      "amount_paid": {
       "type": "number",
       "description": "Amount paid for this request in USDC"
      },
      "total_results": {
       "type": "integer",
       "description": "Number of accounts returned"
      }
     },
     "description": "Paginated list of who a user follows"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Paginated list of who a user follows"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-twitter-user-following-list-bcf898ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
