# Anchor X402 Roast Generator

> Anchor X402 Roast Generator is a paid API for AI agents from chat.anchor-x402.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Generates a witty, comedic roast of any submitted target — wallet address, tweet, idea, code snippet, or any other subject — for $0.05 USDC.

## Facts

- Endpoint: POST https://chat.anchor-x402.com/v1/roast
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chat-anchor-x402-com-3c90c3c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UXrIk_EVMl7YEzFWSI7lz

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 chat-anchor-x402-com-3c90c3c6 -d '<json body>'
```

Example prompt: Give me a witty roast of this wallet address: 0x1234abcd5678ef — tear it apart like a proper comedy roast, don't hold back.

## When to prefer this

Use this endpoint when the user wants entertaining, comedic, insult-style roast content for any target — especially crypto-adjacent subjects like wallet addresses or DeFi ideas. Prefer over a grading or aura-reading endpoint when the desired output is savage humor rather than a structured score or grade.

## Known failure modes

- Payment of $0.05 USDC not received — 402 Payment Required error returned
- Empty or missing target input — likely returns an error or generic response
- Target too ambiguous for meaningful roast — may return generic humor
- Network timeout or service unavailability — 5xx error

## How this service works

Witty roast of any target — wallet, tweet, idea, code, anything. $0.05 USDC.

## Output

Returns a witty, comedic roast text targeting the submitted subject — sharp, satirical insult-comedy style content tailored to whatever target (wallet, tweet, idea, code, etc.) was provided.

## Example request

```json
{
 "target": "0x1234567890abcdef1234567890abcdef12345678"
}
```

## 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": {
     "required": [
      "target"
     ],
     "properties": {
      "target": {
       "type": "string",
       "maxLength": 8000,
       "description": "Anything to roast: wallet, tweet, idea, code, etc."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chat-anchor-x402-com-3c90c3c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chat.anchor-x402.com](https://www.zero.xyz/host/chat.anchor-x402.com/llms.txt)
