# Cravvol Reddit Scraper

> Cravvol Reddit Scraper is a paid API for AI agents from cravvol.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 a JSON object

## Facts

- Endpoint: POST https://cravvol.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/cravvol-reddit-scraper-8af771d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wZPbY9GbkQhje4zRmP7bq

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 cravvol-reddit-scraper-8af771d9 -d '<json body>'
```

Example prompt: Can you scrape this Reddit thread and pull out all the data from it? Here's the URL: https://www.reddit.com/r/MachineLearning/comments/abc123/some_interesting_post/

## When to prefer this

Use this endpoint when you need to extract structured data from a specific Reddit URL (post, comment thread, or subreddit page) without setting up Reddit API credentials. It's ideal for AI agents that need on-demand, pay-per-use Reddit data access with no subscription overhead, billed at $0.02 USDC per call via x402.

## Known failure modes

- Invalid or non-Reddit URL provided — returns success: false or error
- Reddit URL is inaccessible, deleted, or private — data may be empty or error returned
- Rate limiting or Reddit blocking the scraper — request fails
- Malformed URL input — schema validation error
- Payment not completed via x402 — request not processed

## How this service works

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

## Output

A JSON object with a 'success' boolean indicating whether the scrape succeeded, and a 'data' object containing the structured Reddit content (post details, comments, subreddit info, etc.) extracted from the provided URL.

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