# twit.sh — X/Twitter Community Members Lookup

> twit.sh — X/Twitter Community Members Lookup 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 the list of members in a specific X (Twitter) community, including their profile info and public metrics, with pagination support.

## Facts

- Endpoint: GET https://twit.sh/communities/members
- 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-community-members-lookup-8500d8bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_85r5BMx_mAr8ObzM-XNch

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-community-members-lookup-8500d8bd
```

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

## When to prefer this

Use this endpoint when you need to enumerate members of a specific X community programmatically without managing Twitter API credentials. Ideal for autonomous agents that need to do audience research, identify community influencers, or build member directories for a known community ID. Prefer this over scraping or direct Twitter API integration because it requires no sign-up or API keys and charges per-request in USDC via x402.

## Known failure modes

- Invalid or non-existent community ID returns empty data or 404-equivalent error
- Missing required 'id' query parameter causes request rejection
- Private or restricted communities may return no members or an authorization error
- Invalid next_token cursor causes pagination to fail or restart
- Payment failure (insufficient USDC) blocks the request with a 402 response
- Rate limiting or X API downtime causes intermittent failures

## 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 array of community member objects, each containing user ID, name, username, verified status, bio description, community role, and public metrics (follower count, following count, tweet count, like count), along with a next_token for fetching the next page of results.

## 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 community 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.",
    "community_role": "Member",
    "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-community-members-lookup-8500d8bd/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)
