# ClawhunterBountyFullReport

> ClawhunterBountyFullReport is a paid API for AI agents from clawhunter.fun, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns a bundled full report for a specific bounty task, combining creator payout history, project/coin research, and bounty detail in one call

## Facts

- Endpoint: GET https://clawhunter.fun/api/v1/bounties/69084d78-76f0-450c-8d3f-faaa0869c320/report
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawhunterbountyfullreport-fdb70395
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_14ThpauSCF6snCtREkkaH

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 clawhunterbountyfullreport-fdb70395
```

Example prompt: Pull the full ClawhunterBountyFullReport for bounty task 69084d78-76f0-450c-8d3f-faaa0869c320 — I want to see the creator's payout history, the project research deep-read, and all the bounty details bundled together.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call bundle covering all three dimensions of a bounty — creator trustworthiness (payout history), underlying asset quality (project research), and task specifics (bounty detail) — rather than calling each sibling endpoint separately. Ideal when doing due diligence on whether to participate in or trust a bounty.

## Known failure modes

- Invalid or unknown bounty ID returns 404 not found
- Malformed UUID in path parameter returns 400 bad request
- Upstream research or payout data temporarily unavailable returns 503
- Payment not included or insufficient returns 402 Payment Required
- Bounty task exists but report not yet generated returns 202 or empty data

## How this service works

Full Pump.fun bounty report — creator payout history, project research, and full bounty detail in one call

## Output

A bundled report containing: the bounty creator's historical payout track record (posted vs paid, total paid to winners, wallet address, score), an agent-generated deep-read research report on the associated coin or project, and the full detail record for the specific bounty task including winner information.

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "the bounty task id"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "report": {
       "type": "object",
       "properties": {
        "bounty": {
         "type": "object",
         "properties": {
          "id": {
           "type": "string",
           "description": "the bounty id (UUID); the pump.fun page is /go/{id}"
          },
          "url": {
           "type": "string",
           "description": "the bounty page on pump.fun"
          },
          "body": {
           "type": [
            "string",
            "null"
           ],
           "description": "the full bounty description (markdown), as posted on pump.fun"
          },
          "title": {
           "type": "string",
           "description": "the bounty title"
          },
          "bestFor": {
           "type": "array",
           "items": {
            "type": "string"
           },
           "description": "suggested audience labels this bounty suits. Advisory free-text array — not enumerated; don't branch on exact strings."
          },
          "summary": {
           "type": [
            "string",
            "null"
           ],
           "description": "plain-text description of what the task requires. Advisory free-text — not a controlled value."
          },
          "criteria": {
           "type": "array",
           "items": {
            "type": "object",
            "additionalProperties": true
           },
           "description": "the bounty's full acceptance criteria as posted — each { text, required }. requirementsSummary is our condensed version."
          },
          "friction": {
           "type": [
            "string",
            
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawhunterbountyfullreport-fdb70395/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)
