# Tempest AI Paraphrase

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

Rewrites input text into one or more paraphrased variations using AI, preserving meaning while altering phrasing and style.

## Facts

- Endpoint: POST https://trempest.vercel.app/api/paraphrase
- 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-paraphrase-da531476
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HVs_-tBo9J2bpY2RnbU0s

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

Example prompt: Can you rewrite this paragraph in 3 different ways so each version sounds distinct but keeps the same meaning? Here's the text: 'Our platform helps small businesses manage their finances effortlessly, saving time and reducing errors every day.'

## When to prefer this

Choose this endpoint when you need multiple distinct phrasings of existing text for A/B testing, SEO differentiation, or avoiding repetition — especially when you want pay-per-call pricing with USDC and no subscription commitment. Prefer it over general-purpose LLM prompting when you want a dedicated, consistent paraphrase API with controlled variation count.

## Known failure modes

- Missing required 'text' field returns a validation error
- Requesting more than 5 variations may be rejected or capped
- Empty or very short input text may produce low-quality or identical variations
- Payment failure (insufficient USDC balance) blocks the call under x402 protocol
- Rate limits or server-side AI timeouts may return a 5xx 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 one or more AI-generated paraphrased versions of the input text, up to the requested number of variations (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-da531476/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trempest.vercel.app](https://www.zero.xyz/host/trempest.vercel.app/llms.txt)
