# ClawHunter Tone Creator

> ClawHunter Tone Creator is a paid API for AI agents from clawhunter.fun, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Creates a custom voice/tone profile for AI content generation, modeled on either a Twitter/X username or a freeform voice description

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/tones
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawhunter-tone-creator-bc80928d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ULNh4I85Z9nBDdlS2-Daa

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 clawhunter-tone-creator-bc80928d -d '<json body>'
```

Example prompt: Create a ClawHunter tone called 'CryptoMaven' modeled on the Twitter account @cz_binance — I want to use it to generate posts that sound like him.

## When to prefer this

Use this endpoint when you need to create a reusable, named voice profile for AI-generated content — especially when you want to model the tone on a real Twitter/X user's writing style. Prefer this over manual prompt engineering when you want a compiled, production-ready voice prompt with identity and style rules already extracted.

## Known failure modes

- Missing both twitterUsername and description — API requires at least one of these
- Invalid or non-existent Twitter/X handle — tone agent cannot sample real tweets
- Missing required 'name' field — returns validation error
- Payment failure via x402 protocol — call not processed
- Twitter account is private or suspended — sampling fails, may fall back to synthetic fidelity
- Malformed bodyType enum value — request rejected

## 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 tone object containing a unique ID (UUID or preset slug), display name, fidelity label (sampled from real tweets or synthetic from description), a full compiled voice prompt ready for use with any LLM, an identity paragraph describing the speaker, and an array of style rules. Also includes a run log showing which agents acted and what steps were taken.

## Example request

```json
{
 "input": {
  "body": {
   "name": "TechOptimist",
   "description": "Enthusiastic, forward-thinking voice focused on emerging technologies and innovation. Uses accessible language with occasional technical depth. Tone is encouraging and solution-oriented, avoiding hype while maintaining genuine excitement about possibilities."
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json",
  "pathParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "display name for the tone"
      },
      "description": {
       "type": "string",
       "description": "freeform voice description / modulation. Required if no twitterUsername."
      },
      "twitterUsername": {
       "type": "string",
       "description": "X handle to model the voice on (with or without @). Required if no description."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "run": {
       "type": "object",
       "properties": {
        "steps": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "at": {
            "type": "string",
            "description": "ISO timestamp"
           },
           "agent": {
            "type": "string",
            "description": "which agent acted (e.g. scout agent, tone agent, draft sub-agent)"
           },
           "action": {
            "type": "string",
            "description": "what it did"
           }
          }
         }
        }
       },
       "description": "What Claw's agents did for this call — the same log the Supercomputer UI streams live."
      },
      "tone": {
       "type": "object",
       "properties": {
        "id": {
         "type": "string",
         "description": "preset slug (e.g. claw) or UUID for custom tones — the handle you pass as toneId"
        },
        "name": {
         "type": "string",
         "description": "display name"
        },
        "credit": {
         "type": [
          "object",
          "null"
         ],
         "description": "who contributed 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "run": {
   "steps": [
    {
     "at": "",
     "agent": "",
     "action": ""
    }
   ]
  },
  "tone": {
   "id": "",
   "name": "",
   "preset": false,
   "prompt": "",
   "fidelity": "",
   "identity": "",
   "styleRules": [
    ""
   ],
   "constraints": [
    ""
   ],
   "description": "",
   "voiceSamples": [
    ""
   ],
   "sourceUsername": ""
  },
  "tones": [
   {
    "id": "",
    "name": "",
    "preset": false,
    "prompt": "",
    "fidelity": "",
    "identity": "",
    "styleRules": [
     ""
    ],
    "constraints": [
     ""
    ],
    "description": "",
    "voiceSamples": [
     ""
    ],
    "sourceUsername": ""
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawhunter-tone-creator-bc80928d/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)
