# Tempest AI Content Compose

> Tempest AI Content Compose is a paid API for AI agents from tumpest.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Generates original written content from a prompt with configurable tone, style, length, and target audience

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/compose
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-content-compose-244d3403
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nsbeYbPCJ-uFgsvsivDdb

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 tempest-ai-content-compose-244d3403 -d '<json body>'
```

Example prompt: Write me a medium-length blog post aimed at small business owners explaining why email marketing still works, using an encouraging and approachable tone with a conversational style.

## When to prefer this

Use this endpoint when you need to generate original written content from scratch given a prompt, and want fine-grained control over tone, style, length, and audience — especially in a pay-per-call, no-subscription context using USDC on Tempo.

## Known failure modes

- Missing required prompt field returns a validation error
- Overly vague prompt may produce generic or low-quality output
- Unsupported tone or style values may be ignored or cause errors
- Network timeout on long content generation requests
- Payment failure (402) if USDC balance is insufficient

## How this service works

Compose, rewrite, translate, and refine content at scale. 25 AI-powered endpoints. Pay-per-call with USDC on Tempo.

## Output

A JSON object with a success boolean and a data object containing the AI-generated written content based on the provided prompt, tone, style, length, and audience parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "tone": {
   "type": "string",
   "description": "Tone"
  },
  "style": {
   "type": "string",
   "description": "Writing style"
  },
  "length": {
   "type": "string",
   "description": "Desired length: short, medium, long"
  },
  "prompt": {
   "type": "string",
   "description": "The writing prompt"
  },
  "audience": {
   "type": "string",
   "description": "Target audience"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tempest-ai-content-compose-244d3403/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tumpest.vercel.app](https://www.zero.xyz/host/tumpest.vercel.app/llms.txt)
