# PayWeave Twitter – Community Posts Feed

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

Retrieves a paginated list of tweets/posts from a specified X/Twitter community by its numeric community ID.

## Facts

- Endpoint: GET https://twitter.payweave.services/communities/posts
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-community-posts-feed-6639c69d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JVSZx7IoIt5Fmz0WGSTcq

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-posts-feed-6639c69d
```

Example prompt: Pull the latest posts from X community ID 1693573582226665701 and show me what people are discussing there.

## When to prefer this

Use this endpoint when you need to retrieve posts scoped specifically to an X/Twitter community (not a general search or user timeline). It is the right choice when you have a community numeric ID and want paginated access to that community's post feed, especially in pay-per-call scenarios where you only pay for the data you actually need via x402 micropayments.

## Known failure modes

- Invalid or non-numeric community ID returns a validation error
- Community does not exist or is private returns an empty or error response from twitterapi.io
- Invalid next_token cursor causes pagination to fail or restart
- Payment not provided or insufficient USDC results in HTTP 402 rejection
- Rate limiting or upstream twitterapi.io errors propagate as 5xx responses

## How this service works

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

## Output

Returns a JSON object containing an array of tweet objects (with full tweet metadata as forwarded from twitterapi.io), a next_cursor string for fetching the next page, and a has_next_page boolean indicating whether additional pages exist.

## 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": {
      "tweets": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of tweet 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": "Tweet 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-posts-feed-6639c69d/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)
