# Claw Hunter Image Prompt Generator

> Claw Hunter Image Prompt Generator is a paid API for AI agents from clawhunter.fun, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generates render-ready image prompts from a freeform creative brief for use in bounty content creation

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/tools/image-prompts
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw-hunter-image-prompt-generator-ae9424c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1XR5XPfodbx7u7kAr9aTY

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-prompt-generator-ae9424c5 -d '<json body>'
```

Example prompt: Generate 3 render-ready image prompts for a friendly cartoon mascot character for a DeFi startup — modern, approachable style, suitable for targeting young crypto-native professionals.

## When to prefer this

Use this endpoint when an AI agent needs to produce professional-quality, render-ready image prompts from a freeform creative brief — especially in the context of crypto bounty participation on platforms like Pump Fun GO, Atelier, or EarnFi where image content is a deliverable. Prefer this over generic prompt-engineering approaches when you need safety-screened, structured output tuned for bounty content requirements.

## Known failure modes

- Brief fails safety screening — inputs rejected before prompts are generated
- Malformed or missing brief field — returns error or empty prompts array
- Count parameter out of range — may return fewer prompts than requested
- Network or payment failure via x402 — call not processed, no prompts returned

## 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 list of detailed, render-ready image generation prompts derived from the brief, plus a log of agent run steps showing safety screening and prompt-writing stages.

## Example request

```json
{
 "input": {
  "body": {
   "brief": "Create a friendly cartoon mascot character for a tech startup, modern and approachable style",
   "count": 1,
   "context": "The mascot should be suitable for a software development company targeting young professionals"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "brief": {
   "type": "string",
   "description": "freeform ask. Required if no bountyId."
  },
  "count": {
   "type": "number",
   "description": "1-4, default 1"
  },
  "context": {
   "type": "string",
   "description": "extra grounding context"
  },
  "bountyId": {
   "type": "string",
   "description": "bounty to fulfill. Required if no brief."
  },
  "referenceImageUrls": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "up to 4 image URLs (http(s) or base64 data:) used to ground the prompts — the real logo/mascot/style to match"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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