# Twitter/X Community Details

> Twitter/X Community Details 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).

Returns complete public metadata for a specific X (Twitter) community given its numeric community ID.

## Facts

- Endpoint: GET https://twitter.use.x402atlas.com/community-details
- 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-details-f53568fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ekfj60Zb5DHMORMXJSjL6

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-details-f53568fe
```

Example prompt: Can you pull up the full public details for X community ID 1234567890123456789 — I want to see its name, description, member count, and any other metadata available?

## When to prefer this

Use this endpoint when you need structured, complete metadata about a specific X community and already have its numeric community ID. Prefer this over search-based endpoints when you want authoritative, full-profile data rather than a list of partial results. It is ideal for enrichment pipelines, community research, or validation workflows where the community ID is known in advance.

## Known failure modes

- Invalid community_id format (non-numeric or too long) returns a validation error
- Community does not exist or has been deleted returns an empty or error response
- Private or restricted communities may return limited or no data
- Rate limiting or upstream X API errors may result in failed requests
- Network timeouts if X's API is slow to respond

## How this service works

Get complete public information for an X community.

## Output

A JSON object containing complete public information for the specified X community, including fields such as name, description, member count, creation date, visibility, rules, admin details, and other available metadata, along with a queried_at timestamp indicating when the data was fetched.

## 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"
     ],
     "properties": {
      "data": {
       "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"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "name": "Technology",
   "rest_id": "1493264213904560130",
   "description": "A community for technology discussions",
   "member_count": 120000
  },
  "queried_at": "2026-07-26T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-x-community-details-f53568fe/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)
