# Pa1m Reddit Comment Fetch

> Pa1m Reddit Comment Fetch is a paid API for AI agents from reddit.hypa1m.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches Reddit comments for AI agents via a pay-per-request x402 USDC micropayment API

## Facts

- Endpoint: POST https://reddit.hypa1m.xyz/comment
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pa1m-reddit-comment-fetch-3fb7720a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zRDAeKxgGGr_BOcV_oFwp

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 pa1m-reddit-comment-fetch-3fb7720a -d '<json body>'
```

Example prompt: Can you pull the top comments from the Reddit thread about electric vehicles in r/teslamotors so I can summarize the community sentiment?

## When to prefer this

Choose this endpoint when an AI agent needs programmatic, pay-per-use access to Reddit comment data without managing Reddit API credentials or OAuth flows. Ideal for agents that need to analyze community sentiment, summarize discussions, or extract user opinions from specific Reddit threads on demand. The x402 micropayment model ($0.05 USDC per call) makes it suitable for lightweight, infrequent lookups rather than bulk scraping.

## Known failure modes

- Insufficient USDC balance or failed x402 payment — request rejected before processing
- Invalid post ID or subreddit — returns empty posts array
- Reddit rate limiting or upstream API unavailability — service error or delayed response
- Malformed request body — returns a 400-level error
- Post has no comments — returns empty posts array with null after cursor

## How this service works

Reddit data API for AI agents — pay-per-request via x402 USDC on Base

## Output

Returns a JSON object containing a list of Reddit comment posts and a pagination cursor ('after') for fetching subsequent pages. The posts array includes comment content, authors, and associated metadata. An empty posts array with a null 'after' cursor indicates no results or end of pagination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "loid": {
   "type": "string",
   "description": "loid cookie from /login"
  },
  "text": {
   "type": "string",
   "description": "Comment body"
  },
  "post_url": {
   "type": "string",
   "description": "Full URL of the post to comment on"
  },
  "token_v2": {
   "type": "string",
   "description": "Optional token_v2 cookie"
  },
  "csrf_token": {
   "type": "string",
   "description": "Optional CSRF token"
  },
  "reddit_session": {
   "type": "string",
   "description": "Session cookie from /login"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "after": null,
  "posts": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pa1m-reddit-comment-fetch-3fb7720a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from reddit.hypa1m.xyz](https://www.zero.xyz/host/reddit.hypa1m.xyz/llms.txt)
