# Twitter/X Community Members

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

Retrieves the list of members belonging to a specified X (Twitter) community.

## Facts

- Endpoint: POST https://twitter.use.x402atlas.com/community-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-community-members-35ad5639
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pZQTerrl3JDOV72a30rGm

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-community-members-35ad5639 -d '<json body>'
```

Example prompt: Can you fetch me the list of members in the X community with ID '12345678' so I can see who's part of it?

## When to prefer this

Use this endpoint when you need to enumerate the actual user membership of a specific X community by its ID, rather than searching for communities or fetching community metadata. Prefer this over general Twitter search when you need structured member lists rather than posts or trends.

## Known failure modes

- Invalid or non-existent community ID returns an error or empty result
- Private or restricted communities may return access denied
- Rate limiting or payment failure results in a 402 or 429 error
- Pagination cursor mismatch causes incomplete or duplicate results
- Community with zero members returns an empty list

## How this service works

Get members of an X community.

## Output

Returns a paginated list of X user profiles for members of the specified community, including usernames, display names, profile metadata, and potentially follower counts or other public profile fields. May include a cursor for fetching subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "community_id": {
   "type": "string",
   "pattern": "^[0-9]{1,25}$",
   "maxLength": 25,
   "description": "Decimal X community identifier"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "name": "Mukul Sharma",
    "rest_id": "2901317886",
    "screen_name": "stufflistings",
    "community_role": "Admin",
    "is_blue_verified": true
   }
  ],
  "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-community-members-35ad5639/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)
