# GEDX402 Social – Reddit Post Comments Fetcher

> GEDX402 Social – Reddit Post 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-14).

Fetches comments from a Reddit post via the SociaVault proxy, returning structured comment data with optional trimming and cursor-based pagination.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/reddit/post/comments
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-reddit-post-comments-fetcher-539e2740
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4G2LZvdqh3ediYc2tFTRU

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 gedx402-social-reddit-post-comments-fetcher-539e2740
```

Example prompt: Can you pull the comments from this Reddit post for me — https://www.reddit.com/r/programming/comments/abc123/some_post — and trim the content so it's not too verbose?

## When to prefer this

Use this endpoint when you need to programmatically retrieve comments from a specific Reddit post and are comfortable with micropayment-per-call (x402) billing at $0.014 USDC. Prefer it over direct Reddit API access when you want a managed proxy that abstracts away Reddit auth complexity. Supports pagination for deep comment threads.

## Known failure modes

- Invalid or inaccessible Reddit post URL returns an error or empty data
- Payment failure via x402 prevents data from being returned
- Cursor value is invalid or expired, causing pagination to fail
- Reddit post is private, deleted, or restricted, resulting in no comment data
- Rate limiting or Reddit API changes may cause intermittent failures

## How this service works

SociaVault API proxy — reddit-post-comments. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

A JSON object with a 'data' field containing the comments from the specified Reddit post, a 'success' boolean indicating whether the fetch succeeded, and a 'provider' field identifying SociaVault as the data source. Supports cursor-based pagination for large comment threads.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "trim": {
   "type": "boolean"
  },
  "cursor": {
   "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/gedx402-social-reddit-post-comments-fetcher-539e2740/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)
