# Tempest AI Content Engine — Expand

> Tempest AI Content Engine — Expand is a paid API for AI agents from tempest-2zzx.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Expands a short piece of text into a longer, more detailed version using AI, with control over writing style and target length.

## Facts

- Endpoint: POST https://tempest-2zzx.vercel.app/api/expand
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-content-engine-expand-b942a81c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V6a34zM5z2myZkdrH5rBQ

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-engine-expand-b942a81c -d '<json body>'
```

Example prompt: Take this product description — 'Handcrafted leather wallet with three card slots and a bill compartment' — and expand it to double the length in a persuasive marketing style.

## When to prefer this

Choose this endpoint when you need to programmatically lengthen existing text content — such as turning bullet points into paragraphs, short product descriptions into detailed copy, or brief notes into full articles — and want control over writing style and expansion multiplier. Prefer it over a generic rewrite endpoint when the primary goal is increasing length and detail rather than changing tone or correcting errors.

## Known failure modes

- Missing required 'text' field returns a validation error
- Invalid or unsupported target_length value may produce unexpected output length
- Very long input texts may hit token limits and return truncated or error responses
- Ambiguous style parameter may result in generic output not matching intent
- Payment failure (insufficient USDC) blocks the request before processing

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing the AI-generated expanded version of the input text, elaborated according to the specified style and target length multiplier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to expand"
  },
  "style": {
   "type": "string",
   "description": "Writing style"
  },
  "target_length": {
   "type": "string",
   "description": "Target expansion (double, triple)"
  }
 }
}
```

## 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-engine-expand-b942a81c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tempest-2zzx.vercel.app](https://www.zero.xyz/host/tempest-2zzx.vercel.app/llms.txt)
