# Reddit Content Scraper

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

Fetches and extracts structured data from a Reddit URL, returning post, comment, or subreddit content as JSON

## Facts

- Endpoint: POST https://cravvoul.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-content-scraper-27357bb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1kWfFBhOCpBVI2Jk7Tf9t

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-content-scraper-27357bb6 -d '<json body>'
```

Example prompt: Can you scrape this Reddit thread for me and give me the post content and top comments? Here's the URL: https://www.reddit.com/r/MachineLearning/comments/abc123/some_interesting_post/

## When to prefer this

Choose this endpoint when you need to programmatically retrieve structured content from a specific Reddit URL — such as a post, comment thread, or subreddit listing — without setting up Reddit API credentials. It is pay-per-request with no subscription, making it ideal for infrequent or ad-hoc Reddit data extraction by AI agents.

## Known failure modes

- Invalid or malformed Reddit URL returns error or success:false
- Private or quarantined subreddit may return no data
- Deleted posts or removed comments may return empty content
- Reddit rate limiting or blocking may cause request failure
- Non-Reddit URLs submitted to this endpoint will likely fail or return unexpected results

## 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 structured Reddit content — which may include post title, body text, author, score, comments, subreddit metadata, or listing items depending on the URL type provided.

## 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-content-scraper-27357bb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvoul.vercel.app](https://www.zero.xyz/host/cravvoul.vercel.app/llms.txt)
