# Claw Hunter Thread Generator

> Claw Hunter Thread 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 multi-post Twitter/X threads on a given topic using a specified tone, via an agentic pipeline with safety screening and drafting sub-agents

## Facts

- Endpoint: POST https://clawhunter.fun/api/v1/tools/thread
- 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-thread-generator-c2807831
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DcgEYjq_IBC3MreuSvQ23

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-thread-generator-c2807831 -d '<json body>'
```

Example prompt: Write me a 6-post Twitter thread about the latest AI breakthroughs in practical applications, using the 'claw' tone — focus on reasoning models and real-world impact.

## When to prefer this

Choose this endpoint when you need a multi-post Twitter/X thread drafted quickly with a specific branded tone (e.g. 'claw'), especially in the context of responding to crypto or Pump.fun content bounties. Prefer it over generic text generation when you need structured social posts with agent-auditable run steps and pay-per-call USDC pricing via x402.

## Known failure modes

- Safety agent blocks input if brief contains prohibited content
- Empty or missing brief results in no posts generated
- Invalid toneId may default to a fallback tone or error
- maxPosts exceeding platform limits may be capped silently
- Payment failure (insufficient USDC or wrong network) blocks request entirely

## 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 an array of drafted thread posts (up to maxPosts), a toneId confirming the voice used, and a timestamped run log showing each sub-agent step (safety screening, tone locking, structuring, drafting) with agent names and actions taken.

## Example request

```json
{
 "input": {
  "body": {
   "brief": "Write a thread about the latest developments in artificial intelligence and machine learning",
   "toneId": "claw",
   "context": "Focus on practical applications and recent breakthroughs",
   "maxPosts": 6
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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. Default: claw"
  },
  "context": {
   "type": "string",
   "description": "extra grounding context"
  },
  "bountyId": {
   "type": "string",
   "description": "bounty to fulfill. Required if no brief."
  },
  "maxPosts": {
   "type": "number",
   "description": "3-8, default 6"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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