# Tempest AI Paraphrase

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

Generates one or more paraphrased variations of a given text using AI

## Facts

- Endpoint: POST https://tempestars.vercel.app/api/paraphrase
- Price: $0.2/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-paraphrase-a29855dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0xZd93WrN_py1YGarRHnp

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-paraphrase-a29855dd -d '<json body>'
```

Example prompt: Can you paraphrase the following paragraph and give me 3 different variations of it? 'Our product helps teams collaborate more effectively by centralizing communication and task management in one intuitive platform.'

## When to prefer this

Choose this endpoint when you need AI-generated paraphrased rewrites of existing text with optional multiple variations in a single call. It is purpose-built for paraphrasing specifically, as opposed to general rewriting, translation, or summarization endpoints that may also exist in the Tempest suite.

## Known failure modes

- Missing required 'text' field returns a validation error
- Requesting more than 5 variations may be rejected or clamped
- Very long input text may exceed token limits and return an error
- Network or upstream AI provider failure may return a 500-level error
- Payment failure (USDC/x402) may block the call 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 success flag and a data object containing one or more paraphrased versions of the submitted text, up to the number of variations requested (1–5).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to paraphrase"
  },
  "variations": {
   "type": "number",
   "description": "Number of variations (1-5)"
  }
 }
}
```

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