# Tempest AI Content Engine — Rewrite

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

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

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/rewrite
- 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-rewrite-8324791e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Gt1vVYrqnnmT2yGgwB3X

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-8324791e -d '<json body>'
```

Example prompt: Can you rewrite the following paragraph in a confident, persuasive tone with a professional style, and make sure you keep the original meaning intact: 'Our software helps teams work together by sharing files and tracking tasks in one place.'

## When to prefer this

Choose this endpoint when you need to rephrase or stylistically transform existing text rather than generate new content from scratch, especially when tone or style targeting is important and meaning preservation is desired. Best for copywriting, content editing, and audience-adaptation workflows.

## Known failure modes

- Missing required 'text' field returns a 400 or error response
- Invalid tone or style values may produce unexpected output
- Very long text inputs may exceed processing limits
- Payment failure via x402 results in a 402 response and no content returned
- Network timeout on Vercel serverless function for large payloads

## 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 adjusted to the requested tone and style.

## 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-8324791e/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)
