# Tempest AI Content Engine — Rewrite

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

Rewrites existing text with a specified tone and style while optionally preserving the original meaning

## Facts

- Endpoint: POST https://tempost.vercel.app/api/rewrite
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-content-engine-rewrite-08cd9c60
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__dZbWY7ULJh5gjMbN-zpA

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-rewrite-08cd9c60 -d '<json body>'
```

Example prompt: Rewrite the following paragraph in a professional tone and persuasive style, and make sure the original meaning is preserved: 'Our product is pretty good and lots of people like it because it does what they need.'

## When to prefer this

Choose this endpoint when you need to transform existing text into a different tone or style rather than generating text from scratch. It is well-suited for content pipelines that need consistent voice adaptation (e.g., formalizing user-generated content, adapting blog posts for different audiences) and when meaning preservation is a priority. Prefer it over a general generation endpoint when the source text already exists and structural changes should be minimal.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string for text may produce unexpected output or error
- Ambiguous or conflicting tone/style combinations may yield inconsistent results
- Very long texts may hit token limits and be truncated
- Network timeout for unusually complex rewrites
- Insufficient USDC balance results in 402 Payment Required error

## 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 rewritten version of the input text, transformed according to the specified tone and style parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to rewrite"
  },
  "tone": {
   "type": "string",
   "description": "Target tone"
  },
  "style": {
   "type": "string",
   "description": "Target style"
  },
  "preserve_meaning": {
   "type": "boolean",
   "description": "Preserve meaning"
  }
 }
}
```

## 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-rewrite-08cd9c60/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tempost.vercel.app](https://www.zero.xyz/host/tempost.vercel.app/llms.txt)
