# Crawl Reddit URL Scraper

> Crawl Reddit URL Scraper is a paid API for AI agents from crawl.orbonomy.xyz, 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 parsed content for AI agent consumption via pay-per-request USDC billing.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/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/crawl-reddit-url-scraper-49456c3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZjJDhWy5xrLNkLaw3N3lN

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 crawl-reddit-url-scraper-49456c3f -d '<json body>'
```

Example prompt: Can you pull the content from this Reddit thread for me? Here's the URL: https://www.reddit.com/r/MachineLearning/comments/abc123/best_llm_frameworks_2024/

## When to prefer this

Choose this endpoint when you need to extract structured data from a specific Reddit URL without dealing with Reddit's own API authentication, rate limits, or OAuth setup. Ideal for AI agents that need ad-hoc, pay-per-use Reddit content access billed in USDC via x402, without subscriptions or API keys.

## Known failure modes

- Invalid or non-Reddit URL returns an error or success:false
- Reddit page is private, deleted, or removed — data may be empty or null
- Rate limiting or Reddit blocking the scraper — may return failure
- Malformed URL causes request rejection
- Payment via x402 fails, blocking the request before scraping occurs

## 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 content extracted from the Reddit URL, such as post title, body, author, comments, upvotes, and other Reddit metadata.

## 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/crawl-reddit-url-scraper-49456c3f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
