# StableSocial Reddit Post Comments

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

Fetches comments on a Reddit post given its URL, with optional pagination and trimmed output support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/reddit/post/comments
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-reddit-post-comments-df8ab7ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wmIIqbhIdXOdHkIApYHPW

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-df8ab7ad -d '<json body>'
```

Example prompt: Pull all the comments from this Reddit post for me — https://www.reddit.com/r/technology/comments/xyz123/some_post/ — and give me the full version, not trimmed.

## When to prefer this

Choose this endpoint when you need pay-per-request Reddit comment scraping without setting up OAuth or managing Reddit API credentials. Ideal for one-off data pulls, lightweight agents, or workflows where a subscription model is overkill. It covers pagination via cursor, making it suitable for deep comment threads.

## Known failure modes

- Invalid or non-existent Reddit post URL returns an error
- Expired or invalid cursor causes pagination failure
- Private or deleted Reddit posts may return no comments or an access error
- Payment failure (insufficient USDC) results in 402 response blocking the request
- Rate limiting or Reddit-side blocks may cause temporary failures

## 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 a structured list of comments on the specified Reddit post, including comment text, author, metadata, and a cursor for fetching additional comments or replies. When 'trim' is true, returns a condensed version of each comment object with fewer fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "Reddit post URL"
  },
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "cursor": {
   "type": "string",
   "description": "Cursor to get more comments, or replies."
  }
 }
}
```

## More

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