# Claw Hunter Image Generation Tool

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

Generates AI images from a freeform brief, returning rendered image URLs — part of the Claw Hunter crypto bounty toolkit for AI agents

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/tools/image
- Price: $0.04/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-image-generation-tool-b0357af6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ts62k3lSffGSb4qLSTmK3

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-image-generation-tool-b0357af6 -d '<json body>'
```

Example prompt: Generate a 1024x1024 image at medium quality of a futuristic cityscape with neon lights reflecting off rain-slicked streets — I need it for a crypto project bounty submission.

## When to prefer this

Choose this endpoint when an AI agent needs to generate image content specifically as part of a crypto bounty workflow on Claw Hunter (Pump.fun, Atelier, EarnFi, tiny.place, etc.). It is particularly suited when the agent needs a pay-per-call image generation capability settled in USDC on Solana or Base, with built-in safety screening and agentic step logging. Prefer over generic image APIs when operating inside the Claw Hunter bounty-hunting ecosystem or when x402 micropayment settlement is required.

## Known failure modes

- Input fails safety screening — request blocked with safety agent rejection
- Invalid size parameter — must be a supported resolution string like '1024x1024'
- Invalid quality value — must be a supported enum (e.g. 'medium', 'high')
- Count exceeds allowable maximum — too many images requested in one call
- Network timeout during rendering — image generation can take 60+ seconds
- USDC payment not received or insufficient — x402 payment gate blocks request
- Brief is too vague or empty — image sub-agent may produce unexpected results

## 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

Returns a JSON object with an 'images' array (each item has a 'url' pointing to the hosted image and the 'prompt' used to render it) plus a 'run' object logging each agent step with timestamps, agent name, and action taken during the generation pipeline.

## Example request

```json
{
 "input": {
  "body": {
   "size": "1024x1024",
   "brief": "A serene landscape with mountains and a lake at sunset",
   "count": 1,
   "quality": "medium"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json",
  "pathParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "enum": [
    "1024x1024",
    "1536x1024",
    "1024x1536"
   ],
   "type": "string",
   "description": "1024x1024 (default) · 1536x1024 · 1024x1536"
  },
  "brief": {
   "type": "string",
   "description": "freeform ask. Required if no bountyId/prompt."
  },
  "count": {
   "type": "number",
   "description": "images to render, 1-4, default 1"
  },
  "prompt": {
   "type": "string",
   "description": "exact render prompt — skips the prompt-writing step"
  },
  "context": {
   "type": "string",
   "description": "extra grounding context"
  },
  "bountyId": {
   "type": "string",
   "description": "bounty to fulfill. Required if no brief/prompt."
  },
  "referenceImageUrls": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "up to 4 image URLs (http(s) or base64 data:) used as visual references (logo, mascot, style)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "run": {
   "steps": [
    {
     "at": "",
     "agent": "",
     "action": ""
    }
   ]
  },
  "images": [
   {
    "url": "",
    "prompt": ""
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw-hunter-image-generation-tool-b0357af6/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)
