# Twitter/X List Members

> Twitter/X List Members 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).

Returns the members (user profiles) of a public X (Twitter) list given its numeric list ID.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/list-members
- 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-members-054ddd73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7gzw9BBkiC5aVN5GzJ0Ex

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-members-054ddd73
```

Example prompt: Can you pull all the members from the public X list with ID 1234567890 so I can see who's in it?

## When to prefer this

Use this endpoint when you need the full roster of users belonging to a specific public X list and you already have the list's numeric ID. It is more targeted than searching for lists by keyword and more complete than fetching individual user profiles one at a time. Prefer it over general search endpoints when the goal is membership enumeration rather than discovery.

## Known failure modes

- Invalid or non-numeric list_id returns a validation error
- Private or deleted list returns a not-found or unauthorized error
- List with zero members returns an empty data array with result_count of 0
- Pagination cursor from a different list or expired cursor may return an error or unexpected results
- Rate limiting by the underlying X API may cause transient failures

## How this service works

Get members of a public X list.

## Output

Returns an array of user profile objects (with fields like username, display name, bio, follower counts, etc.), a total result_count, a queried_at timestamp, and an optional opaque cursor for fetching the next page of results when the list is large.

## 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-members-054ddd73/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)
