# SocialFetch X Community Details

> SocialFetch X Community Details 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 details for an X (Twitter) community by its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/twitter/communities
- 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-x-community-details-33127c0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W7EoRgk_bg9f8C3YLKQYT

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-x-community-details-33127c0c
```

Example prompt: Can you pull up the details for this X community — https://x.com/i/communities/1234567890 — I want to know its name, description, and member count.

## When to prefer this

Use this endpoint when you need structured metadata about a specific X (Twitter) community and have its URL. It is the right choice for enriching community-related data, verifying community existence, or retrieving descriptive details about an X community programmatically.

## Known failure modes

- Invalid or malformed community URL returns an error
- Community does not exist or has been deleted returns not found
- Private or restricted communities may return limited data
- Missing required 'url' query parameter returns validation error
- Rate limits or payment issues may result in 402 or 429 responses

## How this service works

Get details for an X community by community id or URL.

## Output

Returns metadata about the specified X community, including its name, description, membership information, and other community-level details associated with the given URL.

## 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."
      }
     }
    }
   },
   "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-x-community-details-33127c0c/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)
