# X/Twitter Followers Lookup via Surplus Intelligence

> X/Twitter Followers Lookup via Surplus Intelligence is a paid API for AI agents from www.surplusintelligence.ai, paid per call via x402, $0.983/call, status unknown (last checked 2026-09-13).

Retrieves up to 100 followers of a given X/Twitter user by their numeric user ID

## Facts

- Endpoint: GET https://www.surplusintelligence.ai/x402/api/twitter/v2/users/:userId/followers
- Price: $0.983/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-surplusintelligence-ai-bcd4f1d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xrm8O8eavopoCwDXZFx05

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 www-surplusintelligence-ai-bcd4f1d7
```

Example prompt: Can you fetch the list of followers for Twitter user ID 12345678 — get up to 50 results?

## When to prefer this

Use this endpoint when you need to programmatically retrieve the follower list of a specific Twitter/X account by numeric user ID and want to pay per-call in USDC without managing your own Twitter API credentials. Prefer this over self-hosted Twitter API access when you need a lightweight, pay-as-you-go solution for follower graph analysis or social intelligence tasks.

## Known failure modes

- Invalid or non-numeric userId returns a 404 or Twitter API error
- userId does not exist — returns Twitter API not found error
- max_results out of range (less than 1 or more than 100) — schema validation error
- Insufficient USDC balance for payment — 402 payment required failure
- Rate limits from Twitter API upstream — may return 429 or error object
- Private/protected account — followers list may be unavailable or empty

## How this service works

X/Twitter API v2 via Surplus Intelligence: Followers/following (100 units)

## Output

Returns a JSON object containing an array of follower user objects (with user IDs and profile data), pagination metadata, and any errors from the Twitter v2 API.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "userId": "123456789"
  },
  "queryParams": {
   "max_results": 10
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "userId"
     ],
     "properties": {
      "userId": {
       "type": "string",
       "description": "Numeric X/Twitter user ID."
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "max_results": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum number of results to return."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {},
      "meta": {
       "type": "object"
      },
      "errors": {
       "type": "array"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "meta"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "name",
     "username"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "username": {
      "type": "string"
     }
    }
   }
  },
  "meta": {
   "type": "object",
   "required": [
    "next_token",
    "result_count"
   ],
   "properties": {
    "next_token": {
     "type": "string"
    },
    "result_count": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-surplusintelligence-ai-bcd4f1d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.surplusintelligence.ai](https://www.zero.xyz/host/www.surplusintelligence.ai/llms.txt)
