# SociaVault Twitter Comments Fetcher

> SociaVault Twitter Comments Fetcher is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Fetches comments/replies on a Twitter post via the SociaVault social data proxy, paid per call with x402.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitter/comments
- 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/sociavault-twitter-comments-fetcher-8b50e084
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z5ki97mV5Uj-LuTzKK8pN

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 sociavault-twitter-comments-fetcher-8b50e084
```

Example prompt: Pull the comments on Twitter post ID 1234567890abcdef using SociaVault — use the default ranking mode and get the first page of results.

## When to prefer this

Use this endpoint when you need to programmatically fetch comments/replies for a specific Twitter post and want a pay-per-call model via x402 micropayments rather than managing Twitter API credentials directly. Prefer it when building agents that need social comment data on-demand without OAuth token management.

## Known failure modes

- Missing or invalid pid returns empty data or error
- Invalid cursor value may return unexpected page or error
- Unsupported rankingMode enum value may fall back to default or error
- Payment failure via x402 blocks the request entirely
- Rate limits or downstream Twitter API issues may return partial or empty data

## How this service works

SociaVault social data ingest — profile, posts, transcript, and full API proxy. One x402 payment per outcome.

## Output

Returns a JSON object with a `data` field containing the comments/replies for the specified Twitter post, along with a `success` boolean and a `provider` field confirming SociaVault as the source. Supports cursor-based pagination for subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pid": {
   "type": "string"
  },
  "cursor": {
   "type": "string"
  },
  "rankingMode": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sociavault-twitter-comments-fetcher-8b50e084/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from social.gedx402.com](https://www.zero.xyz/host/social.gedx402.com/llms.txt)
