# SocialFetch - List X Community Tweets

> SocialFetch - List X Community Tweets is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Retrieves tweets posted in a specific X (Twitter) community, identified by community URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/twitter/communities/tweets
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-list-x-community-tweets-22feaad6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CUaxkYjHKwbynNIJ2XQsh

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 socialfetch-list-x-community-tweets-22feaad6
```

Example prompt: Grab the latest tweets from this X community — https://twitter.com/i/communities/1234567890 — so I can see what members are posting.

## When to prefer this

Use this endpoint when you need to extract tweet content from a specific X community group identified by its URL. Prefer this over general Twitter search when you want community-scoped posts rather than platform-wide search results.

## Known failure modes

- Invalid or expired community URL returns an error
- Private or restricted community may return empty results or an access error
- Community ID not found returns a 404-style error
- Rate limiting may occur with high-frequency polling
- Malformed URL input causes a validation error

## How this service works

List tweets from an X community by community id or URL.

## Output

A list of tweets from the specified X community, including tweet content, metadata, and associated post details.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Community permalink or numeric id."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor returned by a previous response."
      },
      "sortBy": {
       "enum": [
        "relevance",
        "recency"
       ],
       "type": "string",
       "description": "Community tweet sort order. Defaults to `relevance`."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-list-x-community-tweets-22feaad6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
