# ScrapFly Reddit Crawl

> ScrapFly Reddit Crawl is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Crawls and extracts content from a Reddit URL, returning structured post/comment data

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/reddit
- Price: $0.06/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-crawl-2dee16a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TeKsiU-yO537hyubKuxJf

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-crawl-2dee16a7 -d '<json body>'
```

Example prompt: Can you scrape the Reddit thread at https://www.reddit.com/r/technology/comments/abc123/some_post_title/ and pull out the post content and top comments for me?

## When to prefer this

Use this endpoint when you need to programmatically extract content from a specific Reddit thread or page without managing browser automation or anti-scraping challenges yourself. It is ideal for one-off Reddit data extraction, research, sentiment analysis, or feeding Reddit discussion data into AI pipelines, especially when you want to pay per request without a subscription commitment.

## Known failure modes

- Invalid or non-Reddit URL returns failure response
- Reddit rate limiting or blocking causes scrape failure
- Private or deleted subreddit/post returns no data
- Malformed URL input causes validation error
- Payment failure on Base chain prevents request from being processed
- Reddit login-gated content may not be accessible

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing the scraped Reddit page content, which may include post title, body text, author, score, comments, subreddit metadata, and other structured fields extracted from the Reddit URL.

## 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-crawl-2dee16a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
