# Twitter/X List Followers

> Twitter/X List Followers is a paid API for AI agents from twitter.use.x402atlas.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves the list of accounts that follow a given public X (Twitter) list, identified by its numeric list ID.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/list-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/twitter-x-list-followers-0a78102a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q5a_nF7WxVCxqc_KiizYz

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-x-list-followers-0a78102a
```

Example prompt: Can you pull the list of followers for the public X list with ID 1234567890? I want to see who's following it.

## When to prefer this

Use this endpoint when you need to enumerate the accounts that follow a specific public X list by its numeric ID. It is distinct from fetching list members (accounts on the list) — this returns who subscribes to/follows the list. Prefer this over general search or user-lookup endpoints when your goal is audience analysis, follower auditing, or outreach pipeline building around a curated X list.

## Known failure modes

- Invalid or non-numeric list_id returns a validation error
- Private or deleted list returns not-found or access-denied error
- X API rate limit exceeded results in a 429-style error
- Empty result set when list has zero followers (result_count: 0, data: [])
- Malformed list_id (non-digit characters) rejected by input schema pattern validation

## How this service works

Get followers of a public X list.

## Output

Returns a JSON object containing an array of follower user objects (with profile fields), an integer result count, an ISO-8601 timestamp of when the query was made, and an optional opaque pagination cursor for retrieving the next page of results when available.

## 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": [
      "list_id"
     ],
     "properties": {
      "list_id": {
       "type": "string",
       "pattern": "^[0-9]{1,25}$",
       "maxLength": 25,
       "description": "Decimal X list identifier"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data",
      "result_count"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": true
       }
      },
      "cursor": {
       "type": "string",
       "description": "Opaque cursor for the next page, when supplied by X"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time"
      },
      "result_count": {
       "type": "integer",
       "minimum": 0
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": 50393960,
    "name": "Bill Gates",
    "verified": true,
    "description": "Sharing things I learn.",
    "screen_name": "BillGates",
    "followers_count": 65000000,
    "profile_image_url_https": "https://pbs.twimg.com/profile_images/example_normal.jpg"
   }
  ],
  "cursor": "NEXT_PAGE_CURSOR",
  "queried_at": "2026-07-26T12:00:00Z",
  "result_count": 1
 }
}
```

## More

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