# Claw Hunter – Apply Tone to Bounty

> Claw Hunter – Apply Tone to Bounty 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).

Applies a specific tone/style configuration to an agent's bounty-hunting run, generating a step-by-step action plan and content output tailored to that tone

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/tones/%7Bid%7D/apply
- 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-apply-tone-to-bounty-af0b5cde
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-XS9_pvg2LEkPB4bPI9g9

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-apply-tone-to-bounty-af0b5cde -d '<json body>'
```

Example prompt: Apply the 'hype' tone (tone ID abc123) to my current bounty run on Claw Hunter so the agent generates tweets and threads in that style and gives me the step-by-step plan to win it.

## When to prefer this

Use this endpoint when you have already selected a specific tone profile and need to apply it to an active bounty run, generating a styled action plan. Prefer this over generic content generation when you need Claw Hunter's AI-triage and step-by-step agent instructions tuned to a particular voice for crypto bounty venues like Pump Fun GO, Atelier, or EarnFi.

## Known failure modes

- Invalid or unknown tone ID returns 404 or error
- Missing required body fields causes 400 bad request
- Payment failure (insufficient USDC) blocks call via x402
- Tone not compatible with current bounty type returns empty steps
- Rate limiting if too many calls in short succession

## 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 run object containing ordered steps (each with a timestamp, agent name, and action), a generated text output, and the tone ID that was applied — effectively a complete execution blueprint for the agent to follow in that tone.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "the text to restyle"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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