# Claw Hunter Tweet Generator

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

Generates a tweet from a text brief using a chosen tone identity, powered by a multi-agent pipeline that screens, drafts, and refines the content.

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/tools/tweet
- Price: $0.03/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-tweet-generator-4751ec2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gGOYn0YXPX2RtFcwYNEaW

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-tweet-generator-4751ec2d -d '<json body>'
```

Example prompt: Write me a tweet about how AI agents are changing the crypto bounty space in 2024, using the 'claw' tone — keep it punchy and sharp.

## When to prefer this

Use this endpoint when you need AI-generated tweet content specifically tailored for crypto, AI agent, or bounty-hunting contexts, especially when you want a distinctive branded tone (like 'claw') and a transparent multi-agent audit trail. Prefer this over generic text generation APIs when operating within the Claw Hunter bounty ecosystem or when payment via USDC on Solana/Base is acceptable.

## Known failure modes

- Input fails safety screening — agent blocks and returns early with screening rejection
- Invalid or unrecognized toneId — may default or return error
- Brief is too vague or empty — poor quality tweet output
- Payment failure over x402 (USDC on Solana or Base) — request not processed
- Upstream agent timeout causing incomplete run steps

## 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 the generated tweet text, the tone ID used, and a run log showing each agent step (safety screening, tone locking, drafting) with timestamps and actions taken.

## Example request

```json
{
 "brief": "Write a tweet about artificial intelligence trends in 2024",
 "toneId": "claw"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "brief": {
   "type": "string",
   "description": "freeform ask. Required if no bountyId."
  },
  "toneId": {
   "type": "string",
   "description": "voice to write in (preset slug or custom tone UUID). Default: claw"
  },
  "context": {
   "type": "string",
   "description": "extra grounding context (overrides our stored project intel)"
  },
  "replyTo": {
   "type": "string",
   "description": "tweet URL — the draft becomes a reply, grounded in a live read of that tweet"
  },
  "bountyId": {
   "type": "string",
   "description": "bounty to fulfill — we load criteria + project intel server-side. Required if no brief."
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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