# Twitter/X Community Media Feed

> Twitter/X Community Media Feed is a paid API for AI agents from twitter.use.x402atlas.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves a paginated list of media posts from a specified X (Twitter) community by its numeric community ID.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/community-media
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-x-community-media-feed-b1eaaae3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ET-xcaZqiy_8rsVAgb6tE

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 twitter-x-community-media-feed-b1eaaae3
```

Example prompt: Can you pull the latest media posts from X community 1234567890123456789 so I can see what images and videos are being shared there?

## When to prefer this

Use this endpoint when you specifically need media posts (images, videos) from an X community rather than all post types. Prefer this over general X search or user timeline endpoints when the content source is a community rather than an individual account. Choose this over the general community posts endpoint when you only want media-bearing posts.

## Known failure modes

- Invalid or non-numeric community_id returns a validation error
- Private or restricted community returns no data or an authorization error
- Non-existent community ID returns an empty result set
- Rate limiting or API quota exceeded returns an error response
- Pagination cursor mismatch or expiry causes failed page fetch

## How this service works

Get media posts from an X community.

## Output

Returns a JSON object containing an array of media post objects from the specified X community (each with post metadata and media details), a total result_count integer, an ISO 8601 queried_at timestamp, and an optional opaque cursor string for fetching subsequent pages.

## 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": [
      "community_id"
     ],
     "properties": {
      "community_id": {
       "type": "string",
       "pattern": "^[0-9]{1,25}$",
       "maxLength": 25,
       "description": "Decimal X community identifier"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data",
      "result_count"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": true
       }
      },
      "cursor": {
       "type": "string",
       "description": "Opaque cursor for the next page, when supplied by X"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time"
      },
      "result_count": {
       "type": "integer",
       "minimum": 0
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "user": {
     "name": "Bill Gates",
     "id_str": "50393960",
     "screen_name": "BillGates"
    },
    "id_str": "1903602810652082591",
    "full_text": "Example X post",
    "created_at": "Sun Mar 23 12:00:00 +0000 2025",
    "reply_count": 8,
    "retweet_count": 15,
    "favorite_count": 120
   }
  ],
  "cursor": "NEXT_PAGE_CURSOR",
  "queried_at": "2026-07-26T12:00:00Z",
  "result_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-community-media-feed-b1eaaae3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.use.x402atlas.com](https://www.zero.xyz/host/twitter.use.x402atlas.com/llms.txt)
