# Reddit Scraper via stableapify.dev (harshmaur/reddit-scraper)

> Reddit Scraper via stableapify.dev (harshmaur/reddit-scraper) is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Starts an Apify actor run that scrapes Reddit posts, comments, users, and communities without API rate limits, returning a run ID and dataset token for result retrieval.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/harshmaur/reddit-scraper/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reddit-scraper-via-stableapify-dev-harshmaur-reddit-scraper-307f5133
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cPG3OAnoeDVCOecI4oA0o

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-scraper-via-stableapify-dev-harshmaur-reddit-scraper-307f5133 -d '<json body>'
```

Example prompt: Scrape the Reddit profile for user 'sarptecimer' — get up to 100 items, use 1024 MB memory, and don't include email addresses.

## When to prefer this

Choose this endpoint when you need to extract Reddit data — posts, comments, users, or communities — at scale without worrying about Reddit's native API rate limits. It is ideal for one-time bulk extractions, pay-per-result workflows, or when building pipelines that require flexible Reddit data without managing OAuth credentials or API quotas. Prefer this over the Reddit official API when you need higher volume, no authentication setup, or a pay-as-you-go cost model.

## Known failure modes

- Invalid username or subreddit returns an empty dataset or actor error
- Insufficient memory setting causes actor run to fail mid-scrape
- Payment failure (x402) prevents actor from starting
- Exceeding maxItems cap truncates results silently
- Actor run enters FAILED or TIMED-OUT status if Reddit blocks the scraper
- Token expiry before dataset retrieval prevents accessing results

## How this service works

Start the "Reddit Scraper - MCP, AI, PPR" Apify actor (harshmaur/reddit-scraper). Reddit Scraper lets you extract posts, comments, users, and communities without API rate limits. With a flexible pay-per-result model, it’s perfect for one-tim…

## Output

Returns a JSON object containing the Apify actor run details: a run ID, status (e.g. READY), actor ID, start timestamp, total usage in USD, default dataset ID for retrieving results, and a signed JWT token used to poll or fetch the scraped dataset once the run completes.

## Example request

```json
{
 "input": {
  "username": "sarptecimer",
  "includeEmail": false
 },
 "options": {
  "memory": 1024,
  "maxItems": 100
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "searchTerms",
    "searchPosts",
    "searchComments",
    "searchCommunities",
    "withinCommunity",
    "searchSort",
    "searchTime",
    "startUrls",
    "fastMode",
    "crawlCommentsPerPost",
    "includeNSFW",
    "maxPostsCount",
    "maxCommentsCount",
    "maxCommentsPerPost",
    "maxCommunitiesCount",
    "proxy"
   ],
   "properties": {
    "proxy": {
     "type": "object",
     "default": {
      "useApifyProxy": true,
      "apifyProxyGroups": [
       "RESIDENTIAL"
      ]
     },
     "properties": {
      "proxyUrls": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "useApifyProxy": {
       "type": "boolean"
      },
      "apifyProxyGroups": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "apifyProxyCountry": {
       "type": "string"
      }
     },
     "description": "Either use Apify proxy, or provide your own proxy servers.",
     "additionalProperties": {}
    },
    "fastMode": {
     "type": "boolean",
     "default": true,
     "description": "Speeds up scraping of search page URLs at the cost of some accuracy — some posts may be missed. Disable if you need exact results matching what you see on Reddit. Search Keywords always use fast mode automatically."
    },
    "startUrls": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "url"
      ],
      "properties": {
       "url": {
        "type": "string",
        "format": "uri"
       },
       "method": {
        "type": "string"
       },
       "headers": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {
         "type": "string"
        }
       },
       "payload": {
        "type": "string"
       },
       "userData": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "additionalProperties": false
     },
     "default": [],
     "description": "Add one or more Reddit URLs to scrape directly. Supports post URLs, subreddit URLs, user profile URLs, and search page URLs. The Search Keywords options above (sort, time, community filter) do NOT apply to these URLs."
    },
    "searchSort": {
     "enum": [
      "",
      "relevance",
      "hot",
      "top",
      "new",
      "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reddit-scraper-via-stableapify-dev-harshmaur-reddit-scraper-307f5133/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
