# BTC Node API — Reddit Post Comments

> BTC Node API — Reddit Post Comments is a paid API for AI agents from btcnode.uk, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches comments for a specific Reddit post by post ID, returning comment body, score, and author.

## Facts

- Endpoint: GET https://btcnode.uk/api/reddit/comments/%7BpostId%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/btc-node-api-reddit-post-comments-55d150ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BISPG70xnjbDi-UzMu5ep

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 btc-node-api-reddit-post-comments-55d150ca
```

Example prompt: Pull all the comments from Reddit post 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 Reddit comments for a specific post ID and are already operating within the BTC Node API ecosystem (x402 micropayment on Base). Ideal for agents that need to analyze community sentiment, mine discussion threads, or aggregate Reddit data programmatically without managing Reddit OAuth credentials directly.

## Known failure modes

- Invalid or non-existent post ID returns an error or empty result
- Post ID format mismatch causes a bad request
- Micropayment via x402 on Base fails, blocking access
- Reddit rate limiting or API unavailability causes a timeout or 503
- Private or deleted subreddit/post returns no comments

## How this service works

Bitcoin blockchain data, address portfolio, transaction tracing, fee forecasting, whale monitoring, SEC EDGAR filings, URL scraping, AI summarization, and Reddit API via x402 micropayments on Base.

## Output

A JSON object containing a count of comments and an array of comment objects, each with the comment body text, upvote score, and author username.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 50,
  "comments": [
   {
    "body": "...",
    "score": 42,
    "author": "user"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/btc-node-api-reddit-post-comments-55d150ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from btcnode.uk](https://www.zero.xyz/host/btcnode.uk/llms.txt)
