# GoCreative Reddit Lookup API

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

Looks up Reddit data for a given search term or subreddit/user identifier via a pay-per-call API using USDC on Base.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/reddit/%7Barg%7D
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-reddit-lookup-api-8e1b8410
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OlOi3UfFXX-ms7XTluG4h

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-lookup-api-8e1b8410
```

Example prompt: Look up Reddit for recent discussions about 'electric vehicles' — I want to see what people are saying about EVs on Reddit right now.

## When to prefer this

Use this endpoint when you need to programmatically fetch Reddit data (posts, subreddit info, user profiles, or search results) without managing Reddit API credentials or OAuth flows. Ideal for AI agents that need pay-per-use access to Reddit content at $0.005 USDC per call, especially in x402-compatible pipelines on Base.

## Known failure modes

- Invalid or empty argument returns an error or empty result set
- Rate limiting or payment failure via x402 protocol results in 402 Payment Required
- Reddit API downtime or access restrictions cause upstream errors
- Malformed path parameter (e.g. unencoded special characters) causes 400 Bad Request
- Subreddit or user that doesn't exist returns 404 or empty data

## 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 Reddit data (posts, subreddit info, or user data) matching the provided search argument, sourced from Reddit via GoCreative's pay-per-call pipeline. No API key required; payment is $0.005 USDC per call via x402 on Base.

## 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-lookup-api-8e1b8410/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)
