# GoCreative Reddit User Profile Lookup

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

Fetches public profile data for a Reddit user by username via a keyless pay-per-call API

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/reddit/user/%7Barg%7D
- Price: $0.01/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-user-profile-lookup-7f6a979d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iR32DbaI1iNNhjVDMLqRP

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-user-profile-lookup-7f6a979d
```

Example prompt: Can you pull up the public Reddit profile for user 'spez' — I want to see their karma, account age, and any other available stats?

## When to prefer this

Use this endpoint when you need quick, keyless access to a Reddit user's public profile data without setting up OAuth credentials or API keys. Ideal for AI agents that need to verify a Reddit account's legitimacy, check karma/age, or gather social context about a user as part of a broader workflow, and can pay $0.01 USDC per call via x402.

## Known failure modes

- Username not found — Reddit account does not exist or has been deleted (404)
- Username suspended or banned — account exists but is inaccessible
- Payment failure — insufficient USDC balance for x402 micropayment ($0.01)
- Rate limiting — too many requests in a short period
- Invalid username format — special characters or empty string passed as argument
- Reddit API downstream outage — upstream service unavailable

## 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 public Reddit user profile data including karma scores, account creation date, post/comment counts, and other publicly available account metadata for the specified username.

## 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-user-profile-lookup-7f6a979d/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)
