# ScrapFly Reddit Crawler

> ScrapFly Reddit Crawler is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Crawls and extracts content from a Reddit URL, returning structured data about posts, comments, or subreddit pages

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/reddit
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-reddit-crawler-23b0a89b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sLtVQEg4FplQCmCcsl0yM

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 scrapfly-reddit-crawler-23b0a89b -d '<json body>'
```

Example prompt: Can you scrape this Reddit thread for me and pull out all the content — https://www.reddit.com/r/MachineLearning/comments/abc123/some_post_title/ — I want to see the post body and top comments.

## When to prefer this

Use this endpoint when you need to programmatically extract structured content from a specific Reddit URL — a thread, post, or subreddit page — without managing browser automation or Reddit API rate limits yourself. Prefer this over the Reddit API when you need raw page content or when the Reddit API does not expose the data you need.

## Known failure modes

- Invalid or non-Reddit URL returns failure with success: false
- Private or banned subreddit URL returns no data
- Rate limiting or Reddit bot detection causes crawl failure
- Malformed URL input causes validation error
- Reddit page unavailable or deleted returns empty data object

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

A JSON object with a success boolean and a data object containing the extracted Reddit page content, including post metadata, body text, comments, and other structured page data returned from the crawl.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-reddit-crawler-23b0a89b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
