# PayWeave Twitter – Community Members Lookup

> PayWeave Twitter – Community Members Lookup is a paid API for AI agents from twitter.payweave.services, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Fetches the list of member user profiles for a given X/Twitter community by its numeric community ID, with pagination support.

## Facts

- Endpoint: GET https://twitter.payweave.services/communities/members
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-community-members-lookup-d57e4e90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K_CKLorfxr3m9ZFI3IZVV

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 payweave-twitter-community-members-lookup-d57e4e90
```

Example prompt: Can you pull the full member list for Twitter community 1693573582226665701? I want all the user profiles — page through it if there are multiple pages.

## When to prefer this

Use this endpoint when you specifically need the member roster of an X/Twitter community by its numeric ID. It is the right choice for community audience analysis, membership enumeration, or building outreach lists from Twitter communities. Prefer this over user-search or follower endpoints when your target is the community membership list specifically, not followers or search results.

## Known failure modes

- Invalid or non-numeric community ID returns an error or empty result
- Community does not exist or is private — may return empty members array or an error
- Invalid next_token/pagination cursor causes a bad-request error
- Rate limiting or upstream twitterapi.io unavailability results in a 5xx or timeout
- Payment failure (x402) if USDC balance is insufficient — call is not executed

## How this service works

X/Twitter data — tweets, users, communities, lists, articles, and trends.

## Output

A JSON object containing an array of user-profile objects under the 'members' key (sometimes 'users'), a 'next_cursor' string for fetching the next page, and a 'has_next_page' boolean indicating whether more results exist. User profile objects are forwarded verbatim from twitterapi.io.

## 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": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "required": [
        "id"
       ],
       "properties": {
        "id": {
         "type": "string",
         "pattern": "^\\d+$",
         "description": "Numeric ID, e.g. 1693573582226665701"
        },
        "next_token": {
         "type": "string",
         "description": "Pagination cursor from a previous response `next_cursor`. Omit for the first page."
        }
       },
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "users": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "members": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "followers": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "followings": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of user-profile objects."
      },
      "next_cursor": {
       "type": "string",
       "description": "Cursor to pass as `next_token` for the next page."
      },
      "has_next_page": {
       "type": "boolean",
       "description": "True when more pages are available."
      }
     },
     "description": "User list JSON forwarded verbatim from twitterapi.io.",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-community-members-lookup-d57e4e90/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.payweave.services](https://www.zero.xyz/host/twitter.payweave.services/llms.txt)
