# Reddit Subreddit Details Scraper

> Reddit Subreddit Details Scraper is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches detailed metadata and statistics about a Reddit subreddit by name or URL

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/reddit/subreddit/details
- 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-subreddit-details-scraper-c2a5f0a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pjax8K3NAipspMEWWf9dg

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-subreddit-details-scraper-c2a5f0a6
```

Example prompt: Can you pull the details for the AskReddit subreddit — things like subscriber count, description, and any other community info?

## When to prefer this

Use this endpoint when you need to programmatically retrieve metadata and statistics about a specific Reddit subreddit without managing Reddit API credentials. It is ideal for agents doing social media research, community analysis, or monitoring tasks where subreddit-level details (not individual posts) are the target. Prefer this over Reddit's official API when you need quick pay-per-call access with no OAuth setup.

## Known failure modes

- Subreddit name is not case-sensitive as required (e.g. 'askreddit' instead of 'AskReddit') leading to not-found errors
- Subreddit has been banned or made private, returning access-denied or empty response
- Neither subreddit name nor URL provided, causing missing parameter error
- Reddit rate limiting or blocking the scraper temporarily
- Subreddit does not exist, returning a 404 or empty result

## How this service works

Reddit

## Output

Returns structured metadata about the specified subreddit, including community details such as subscriber count, subreddit description, rules summary, creation date, activity metrics, and other publicly available subreddit information scraped from Reddit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Subreddit URL"
      },
      "subreddit": {
       "type": "string",
       "description": "Subreddit name. MUST be case sensitive. So 'AskReddit' not 'askreddit'."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reddit-subreddit-details-scraper-c2a5f0a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
