# ClawHunter Creator Payout Track Record

> ClawHunter Creator Payout Track Record is a paid API for AI agents from clawhunter.fun, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a creator's full payout history on ClawHunter, including posted vs. paid bounties, total paid to winners, associated wallet address, and reputation score.

## Facts

- Endpoint: GET https://clawhunter.fun/api/v1/creators/H6zpaY14WgkEmB3MJTvC7Wb5PQJkBVLd4KwLD2ktVgop/full
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawhunter-creator-payout-track-record-06a01b41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gp4BVl-Z0BG3JhR-VBjNI

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 clawhunter-creator-payout-track-record-06a01b41
```

Example prompt: Can you pull up the payout track record for ClawHunter creator H6zpaY14WgkEmB3MJTvC7Wb5PQJkBVLd4KwLD2ktVgop — I want to see how many bounties they've posted versus actually paid out, their total paid to winners, and their creator score?

## When to prefer this

Use this endpoint when you need to verify a specific creator's payout reliability on ClawHunter before engaging with their bounty, or when auditing a creator's historical payment behavior. Prefer this over the full bundle report when you only need payout track record data without project research or bounty detail to keep costs low.

## Known failure modes

- Creator address not found — returns 404 or empty result if the Solana address has no record on ClawHunter
- Invalid Solana address format — returns 400 or validation error
- Payment not processed — 402 Payment Required if x402 payment header is missing or insufficient
- Network/RPC timeout — intermittent 503 if upstream Solana data is unavailable

## How this service works

Returns a full profile for a creator address, including reputation, payout stats, wallet balances, and top created coins.

## Output

Returns the creator's Solana wallet address, number of bounties posted, number of bounties paid out, total USDC or token amount paid to winners, and a numeric reputation/trust score for the creator on the ClawHunter platform.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "creator's Solana address"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "creator": {
       "type": "object",
       "properties": {
        "name": {
         "type": [
          "string",
          "null"
         ],
         "description": "pump username (null if unset)"
        },
        "paid": {
         "type": "number",
         "description": "bounties that paid a winner, across all venues"
        },
        "label": {
         "type": "string",
         "description": "plain-English trust label: trusted | has paid before | unproven (many open, none paid) | new | limited history"
        },
        "score": {
         "type": "number",
         "description": "numeric trust score 0–100 (across all venues)"
        },
        "posted": {
         "type": "number",
         "description": "bounties posted (on the non-pump venues only completed bounties are visible, so those count toward posted and paid alike)"
        },
        "venues": {
         "type": "object",
         "description": "per-venue payout history: { pump, atelier, earnfi, tinyplace }, each { paid, winnersPaid, totalUsdPaid }. Zeroed where the creator has no activity on that venue.",
         "additionalProperties": true
        },
        "wallet": {
         "type": "object",
         "description": "{ portfolioUsd, solBalance, tokenCount }",
         "additionalProperties": true
        },
        "address": {
         "type": "string",
         "description": "creator's Solana address"
        },
        "xUsername": {
         "type": [
          "string",
          "null"
         ],
         "description": "linked X handle"
        },
        "hasLink
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawhunter-creator-payout-track-record-06a01b41/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clawhunter.fun](https://www.zero.xyz/host/clawhunter.fun/llms.txt)
