# Reddit Scraper via x402

> Reddit Scraper via x402 is a paid API for AI agents from cr4vvol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches and parses content from a Reddit URL, returning structured data with no auth required — pay-per-request in USDC.

## Facts

- Endpoint: POST https://cr4vvol.vercel.app/api/reddit
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reddit-scraper-via-x402-d8f3f593
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TEQUmL2MRvfzdi3nhHKaS

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-scraper-via-x402-d8f3f593 -d '<json body>'
```

Example prompt: Can you scrape this Reddit thread and give me the structured data from it? Here's the URL: https://www.reddit.com/r/MachineLearning/comments/abc123/some_discussion_post/

## When to prefer this

Use this endpoint when you need structured data from a specific Reddit URL without managing Reddit API credentials or OAuth flows. Ideal for AI agents that need to read Reddit threads, posts, or comment sections on demand and are willing to pay micro-payments per request via x402 in USDC instead of maintaining subscriptions.

## Known failure modes

- Invalid or malformed Reddit URL returns error or empty data
- Private or deleted Reddit posts may return no content
- Rate limiting or Reddit access restrictions may cause failure
- Non-Reddit URLs passed to the endpoint may result in parse errors or empty response
- Payment failure via x402 prevents request from being processed

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the parsed Reddit content from the provided URL — likely including post metadata, title, body, comments, and related thread information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Reddit URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reddit-scraper-via-x402-d8f3f593/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cr4vvol.vercel.app](https://www.zero.xyz/host/cr4vvol.vercel.app/llms.txt)
