# twit.sh — X/Twitter List Followers

> twit.sh — X/Twitter List Followers is a paid API for AI agents from twit.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a paginated list of user profiles who follow a specified Twitter/X list, including account metrics

## Facts

- Endpoint: GET https://twit.sh/lists/followers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twit-sh-x-twitter-list-followers-a8f0139c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Iy_AWmqLsr5KUDopNk5kf

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 twit-sh-x-twitter-list-followers-a8f0139c
```

Example prompt: Can you pull the list of followers for X list ID 1234567890 and show me their usernames, bios, and follower counts?

## When to prefer this

Choose this endpoint when you need autonomous, no-signup access to Twitter/X list follower data paid per-request in USDC via x402, particularly in agent workflows where managing OAuth credentials is impractical. Prefer it over the official Twitter API when you want micropayment-based access without rate-limit tiers or API key management.

## Known failure modes

- Invalid or non-existent list ID returns an empty data array or 404-equivalent error
- Missing required 'id' query parameter causes a validation error
- Expired or invalid next_token causes pagination to fail or restart
- Rate limiting or payment failure (insufficient USDC balance) returns a 402 Payment Required
- Private or suspended lists may return no data or an authorization error

## How this service works

Real-time Twitter/X data for AI agents. No sign-up, no API keys. Pay per request in USDC on Base via x402. Fully autonomous.

## Output

A JSON object containing an array of user profiles (id, name, username, verified, description, public_metrics with follower/following/tweet/like counts) for followers of the specified list, plus a meta object with a next_token for pagination.

## 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",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Numeric Twitter/X List ID"
      },
      "next_token": {
       "type": "string",
       "description": "Pagination cursor from previous response"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "9253672",
    "name": "Hal Finney",
    "username": "halfin",
    "verified": false,
    "description": "Running bitcoin.",
    "public_metrics": {
     "like_count": 300,
     "tweet_count": 600,
     "followers_count": 134000,
     "following_count": 200
    }
   }
  ],
  "meta": {
   "next_token": "abc123"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twit-sh-x-twitter-list-followers-a8f0139c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twit.sh](https://www.zero.xyz/host/twit.sh/llms.txt)
