# GoCreative Reddit Scraper

> GoCreative Reddit Scraper is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Scrapes and retrieves posts, comments, or data from a Reddit thread, subreddit, or user profile by passing a Reddit path as the argument

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/scrape/reddit/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-reddit-scraper-18345d7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fhuJu6YzRrIaRGNfiUBfn

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 gocreative-reddit-scraper-18345d7f
```

Example prompt: Can you scrape the Reddit thread at r/investing/comments/abc123 and pull all the comments so I can see what people are saying about that stock?

## When to prefer this

Use this endpoint when you need to scrape Reddit content without managing a Reddit API key or OAuth credentials. Ideal for one-off lookups of threads, subreddits, or user profiles in an agent workflow where pay-per-call pricing ($0.05 USDC) is preferable to a subscription. Particularly useful for AI agents that already use the x402 micropayment protocol.

## Known failure modes

- Invalid or non-existent Reddit path returns an error or empty result
- Reddit rate limiting or blocking may cause timeouts or partial data
- Private or quarantined subreddits may not be accessible
- Malformed path parameter causes a 400-level error
- Payment failure (insufficient USDC balance) returns 402 Payment Required

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns scraped Reddit content for the specified path — which may include post titles, body text, comments, upvote counts, author names, timestamps, and other metadata depending on the path provided (subreddit feed, specific thread, or user profile).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-reddit-scraper-18345d7f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
