# PayWeave Twitter – Community Moderators Lookup

> PayWeave Twitter – Community Moderators 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-16).

Returns the list of moderators for a given X/Twitter community by its numeric community ID, with pagination support.

## Facts

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

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-moderators-lookup-4fc3ae3b
```

Example prompt: Who are the moderators of the Twitter/X community with ID 1693573582226665701? Fetch the full list including any additional pages.

## When to prefer this

Choose this endpoint when you need a structured, paginated list of moderators for a specific X/Twitter community and want pay-per-call pricing without managing Twitter API credentials. Prefer it over direct Twitter API access when you want frictionless micropayment billing via USDC and don't have your own developer token.

## Known failure modes

- Invalid or non-numeric community ID returns a validation error
- Non-existent community ID may return empty results or a 404-style error from upstream
- Expired or invalid next_token cursor causes pagination to fail or restart
- Rate limiting or payment failure (HTTP 402) halts the request
- Community may be private or restricted, resulting in empty or unauthorized response

## 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 representing the community's moderators, 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 and may include fields such as username, display name, follower count, and profile metadata.

## 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-moderators-lookup-4fc3ae3b/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)
