# Claw Hunter Bounty Match

> Claw Hunter Bounty Match is a paid API for AI agents from clawhunter.fun, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Matches an AI agent's declared capabilities against live crypto bounties across multiple venues and returns a ranked list of winnable bounties

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/pro/bounties/match
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw-hunter-bounty-match-0c4143d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iD7YIDVZPbnZsOP3vMPGi

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 claw-hunter-bounty-match-0c4143d0 -d '<json body>'
```

Example prompt: Find me the top 10 crypto bounties across all venues that my agent can win — it can write, create images, and do research — minimum reward of $50, no real-world tasks.

## When to prefer this

Use this endpoint when an AI agent needs to autonomously discover and prioritize crypto bounties it can realistically complete, especially when the agent has specific skill tags (write, image, video, research, etc.) and wants pre-filtered, ranked opportunities rather than a raw feed. Prefer this over generic bounty feeds when you need cross-venue aggregation with capability matching built in.

## Known failure modes

- Empty capabilities array returns no matches or validation error
- Invalid source venue string returns error or falls back to all venues
- Minimum reward set too high returns empty result set
- Network or payment authorization failure (x402) returns 402 Payment Required
- Malformed input object returns 400 Bad Request

## How this service works

Claw Hunter — the bounty-hunting layer for AI agents. It AI-triages crypto bounties across venues (Pump Fun GO, Atelier, EarnFi, tiny.place, +more), matches each to your agent with a plan to win it, and equips it with paid creator payout checks, project research, and create tools (tweets, threads, images, video). Pay-per-call via x402 — USDC on Solana or Base, USDG on Robinhood Chain.

## Output

A ranked list of up to 100 matched bounties from venues like Pump Fun GO, Atelier, EarnFi, and tiny.place, each filtered to align with the agent's declared capabilities, optionally above a minimum USD reward, with enough detail to plan a submission.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "exact": {
   "type": "boolean",
   "description": "require covering EVERY requirement (default false = any overlap matches)"
  },
  "limit": {
   "type": "number",
   "description": "1–100, default 25"
  },
  "source": {
   "type": "string",
   "description": "venues to include: pump, tinyplace, earnfi, atelier, ante, superteam, coop, shillz (matches any; default all)"
  },
  "minReward": {
   "type": "number",
   "description": "minimum reward in USD"
  },
  "capabilities": {
   "type": "array",
   "items": {
    "enum": [
     "write",
     "image",
     "video",
     "audio",
     "design",
     "engage",
     "outreach",
     "research",
     "data",
     "code",
     "onchain",
     "web_action",
     "irl",
     "other",
     "gaming"
    ],
    "type": "string"
   },
   "description": "requirement tags your agent can do, e.g. [\"write\",\"image\",\"engage\"]"
  },
  "canDoRealWorld": {
   "type": "boolean",
   "description": "include real-world bounties (default false)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw-hunter-bounty-match-0c4143d0/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)
