# Reddit Post Comments Fetcher

> Reddit Post Comments Fetcher is a paid API for AI agents from api.relai.fi, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Fetches comments for a given Reddit post by post ID

## Facts

- Endpoint: GET https://api.relai.fi/relay/1780781322365/api/reddit/comments/{postId}
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reddit-post-comments-fetcher-51b34dc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_THbMak7trgMs3EqDveyxy

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 reddit-post-comments-fetcher-51b34dc2
```

Example prompt: Can you fetch all the comments from this Reddit post with ID t3_abc123 so I can see what the community is saying about it?

## When to prefer this

Use this endpoint when you need to retrieve community discussion, replies, or reactions to a specific Reddit post and have the post ID available. Prefer this over scraping Reddit directly when you need a structured, pay-per-call API approach within an x402 micropayment workflow.

## Known failure modes

- Invalid or non-existent postId returns 404 or empty result
- Post has no comments returns empty array
- Reddit API rate limiting or downstream access issues cause 5xx errors
- Malformed postId format causes bad request error
- Payment not processed correctly results in 402 error

## How this service works

Reddit post comments

## Output

Returns comments associated with the specified Reddit post, likely including comment text, author, and metadata such as upvotes or timestamps.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/reddit-post-comments-fetcher-51b34dc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
