# PayWeave Twitter – Get Community by ID

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

Fetches detailed metadata for a specific X/Twitter Community given its numeric community ID.

## Facts

- Endpoint: GET https://twitter.payweave.services/communities/by/id
- Price: $0.0004/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-get-community-by-id-5694ccdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P8Xt8URki1qP2OWFX8A41

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-get-community-by-id-5694ccdb
```

Example prompt: Can you pull up the details for the Twitter community with ID 1693573582226665701? I want to see its name, description, and any other metadata available.

## When to prefer this

Use this endpoint when you have a specific numeric Twitter/X community ID and need to retrieve structured metadata about that community. It is ideal for point lookups rather than searching or listing communities. Prefer this over general Twitter search endpoints when the community ID is already known and you need reliable, pay-per-call access without managing API credentials.

## Known failure modes

- Invalid or non-numeric community ID format returns a validation error
- Community ID does not exist or has been deleted returns empty or error response
- Upstream twitterapi.io outage or rate limit causes failure
- Payment not processed causes 402 response blocking the request
- Private or restricted communities may return limited or no data

## How this service works

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

## Output

Returns a JSON object with community details forwarded verbatim from twitterapi.io, including fields such as community name, description, membership count, creation date, rules, and other community-level metadata as provided by the underlying Twitter data source.

## 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"
        }
       },
       "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": {},
     "description": "Community details JSON forwarded verbatim from twitterapi.io.",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-get-community-by-id-5694ccdb/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)
