# StableSocial Reddit Post Comments

> StableSocial Reddit Post Comments is a paid API for AI agents from socialx402.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-16).

Fetches comments from a specified Reddit post via pay-per-request API with no subscription required

## Facts

- Endpoint: POST https://socialx402.com/api/reddit/post-comments
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-reddit-post-comments-60356ef2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6d9XV8ga2DtoqKRe2VSMc

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 stablesocial-reddit-post-comments-60356ef2 -d '<json body>'
```

Example prompt: Can you pull all the comments from this Reddit post — https://www.reddit.com/r/MachineLearning/comments/abc123/some_post_title/ — so I can see what the community thinks about it?

## When to prefer this

Choose this endpoint when you need pay-per-request Reddit comment data without committing to a subscription plan. Ideal for one-off or infrequent Reddit scraping tasks where you want to avoid API key setup or ongoing fees. Best when the target is specifically Reddit post comments rather than posts, profiles, or other social platforms.

## Known failure modes

- Invalid or malformed Reddit post URL or ID returns an error
- Deleted or private Reddit post returns no data or an error
- Rate limiting or payment failure blocks the request
- Post with no comments returns an empty result set
- Reddit API backend unavailability causes timeout or 5xx error

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns structured comment data from the specified Reddit post, likely including comment text, author usernames, upvote scores, timestamps, and reply/thread nesting structure.

## Example request

```json
{
 "post_id": "abc123def456",
 "comment_id": "comment789",
 "max_page_size": 25
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "post_id": {
   "type": "string",
   "minLength": 1,
   "description": "Reddit post ID"
  },
  "order_by": {
   "enum": [
    "date_desc",
    "date_asc",
    "id_desc"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "max_comments": {
   "type": "integer",
   "default": 50,
   "maximum": 300,
   "minimum": -9007199254740991,
   "description": "Maximum number of comments"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-reddit-post-comments-60356ef2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from socialx402.com](https://www.zero.xyz/host/socialx402.com/llms.txt)
