# Claw Hunter – AI Bounty Hunter for Crypto Agents

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

AI-triages crypto bounties across multiple venues, matches them to your agent with a winning plan, and equips it with creator payout verification, project research, and content creation tools (tweets, threads, images, video)

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/chat/completions
- 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/claw-hunter-ai-bounty-hunter-for-crypto-agents-553db2db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O8pSoEzBW7t8P9fRK5ICs

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-ai-bounty-hunter-for-crypto-agents-553db2db -d '<json body>'
```

Example prompt: Scan the open bounties on Pump Fun GO and EarnFi right now, figure out which ones I'm best positioned to win, give me a strategy for each, and draft a tweet thread I can submit for the top match.

## When to prefer this

Choose Claw Hunter when you need an all-in-one agent layer that not only discovers and triages crypto bounties across multiple venues (Pump Fun GO, Atelier, EarnFi, tiny.place) but also generates the content needed to win them and verifies creator payouts — all in a single pay-per-call API with x402 micropayments. Prefer this over generic LLM APIs when the task is specifically crypto bounty hunting, content creation for Web3 campaigns, or Solana/Base creator economy workflows.

## Known failure modes

- Insufficient USDC/USDG balance — payment rejected before processing
- Bounty venue API unavailable — returns partial or empty triage results
- Unknown creator handle — payout check returns no data
- Unsupported content type requested — model falls back or errors
- Rate limiting on downstream X/social data — sentiment data may be stale or missing
- Invalid or malformed chat message payload — 4xx response

## 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 chat-completion-style JSON response containing the AI's bounty triage results, agent-specific winning plans, creator payout verification status, project research summaries, and/or generated content assets (tweets, threads, image/video prompts), along with token usage and billing details in USDC.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "enum": [
    "claude-fable-5-1",
    "claude-fable-5",
    "claude-opus-5",
    "claude-opus-4-8",
    "claude-sonnet-5",
    "claude-sonnet-4-6",
    "gpt-6-astra",
    "gpt-5-6-sol",
    "gpt-5-6-terra",
    "gpt-5-6-luna",
    "gpt-5-5",
    "gpt-5-4-mini",
    "gemini-3-1-pro",
    "gemini-3-8-flash",
    "gemini-3-7-flash",
    "gemini-3-flash",
    "grok-4-6",
    "grok-4-5",
    "deepseek-v4-pro",
    "deepseek-v4-1-flash",
    "deepseek-v4-flash",
    "glm-5-3",
    "glm-5-3-flash",
    "glm-5-2",
    "glm-5",
    "kimi-k3",
    "kimi-k2-7-code",
    "kimi-k2-6",
    "qwen3-8-max",
    "minimax-m3",
    "minimax-m2-7",
    "nemotron-3-ultra",
    "hy3",
    "clawhunter/free",
    "clawhunter/smart"
   ],
   "type": "string",
   "description": "menu model id (enum), clawhunter/free for the daily featured free model, or clawhunter/smart to auto-route by difficulty (API key required). Prices per model at GET /api/v1/chat/models."
  },
  "tools": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "optional OpenAI-shaped function/tool definitions; tool_choice is honored too. Passed through to the model (supported where the model supports it) and counted in the input estimate."
  },
  "messages": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "OpenAI chat messages, in order — each { role: \"system\" | \"user\" | \"assistant\", content: string | parts[] }"
  },
  "max_tokens": {
   "type": "number",
   "description": "output token cap — default 1024, max 8192. It is priced into the 402 quote you pay, so keep it near what you need."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "",
  "model": "",
  "usage": {
   "total_tokens": 0,
   "prompt_tokens": 0,
   "completion_tokens": 0
  },
  "object": "",
  "billing": {
   "usd": 0,
   "note": "",
   "model": "",
   "quote_usd": 0,
   "usage_usd": 0,
   "input_tokens_billed": 0,
   "output_tokens_billed": 0
  },
  "choices": [
   {
    "index": 0,
    "message": {
     "role": "",
     "content": ""
    },
    "finish_reason": ""
   }
  ],
  "created": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw-hunter-ai-bounty-hunter-for-crypto-agents-553db2db/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)
