# glim.sh Twitter List Members

> glim.sh Twitter List Members is a paid API for AI agents from glim.sh, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Retrieves the list of members belonging to a specified Twitter/X list by its ID

## Facts

- Endpoint: POST https://glim.sh/api/v1/twitter/lists/:id/members
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glim-sh-twitter-list-members-3347a5bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HkD5SmBq-4_TXAttR3Tsh

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 glim-sh-twitter-list-members-3347a5bd -d '<json body>'
```

Example prompt: Can you get me all the members of the Twitter list with ID 1234567890? I want to see who's in it.

## When to prefer this

Use this endpoint when you need to programmatically retrieve all members of a specific Twitter/X list by its ID, especially when building audience intelligence, monitoring list composition, or enriching data about a curated group of Twitter accounts. Prefer this over scraping Twitter directly or using the official Twitter API when you want a pay-per-call model without managing API credentials.

## Known failure modes

- Invalid or non-existent list ID returns an error
- Private or restricted list may return access denied
- Rate limiting or quota exceeded returns a payment or throttle error
- Malformed list ID format causes a bad request error
- Empty list returns an empty members array

## How this service works

List members

## Output

A list of Twitter/X user objects that are members of the specified list, likely including usernames, display names, profile details, and follower counts for each member account.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "meta": {
       "type": "object",
       "required": [
        "result_count"
       ],
       "properties": {
        "next_cursor": {
         "type": "string"
        },
        "result_count": {
         "type": "integer",
         "maximum": 9007199254740991,
         "minimum": -9007199254740991
        },
        "has_next_page": {
         "type": "boolean"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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