# VIBE Twitter User Followers Lookup

> VIBE Twitter User Followers Lookup 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 followers for a given Twitter/X user ID, with full profile data, paid per-call via USDC on Base.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/user/%7Buser_id%7D/followers
- 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-followers-lookup-2d8d600d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UFGO1_p_mOIe2O0-NSEVo

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-followers-lookup-2d8d600d
```

Example prompt: Can you pull the list of followers for Twitter user ID 123456789 — I want their profile info like name, username, bio, and whether they're verified?

## When to prefer this

Choose this endpoint when you need programmatic, pay-per-call access to Twitter follower data without managing API keys or OAuth credentials, especially in crypto/Web3 agent workflows where USDC micropayments on Base are already in use and you want follower profiles enriched with bio and verification data.

## Known failure modes

- Invalid or non-existent user_id returns empty results or error
- Expired or invalid pagination token causes pagination failure
- Insufficient USDC balance causes payment failure and no data returned
- Rate limiting or Twitter API downstream errors may result in 5xx responses
- Private/protected accounts may return no follower data

## 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 follower profile objects (each with id, name, username, description, verified status, and profile image URL), a total results count, a next_token for pagination, the EIP-3009 payment transaction hash on Base, and the USDC amount paid for the request.

## 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"
      },
      "followers": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Follower 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 followers returned"
      }
     },
     "description": "Paginated list of a user's followers with profile data"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Paginated list of a user's followers with profile data"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-twitter-user-followers-lookup-2d8d600d/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)
