# Tempest AI Content Engine — Clarify

> Tempest AI Content Engine — Clarify 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).

Simplifies and clarifies a piece of text to a target reading level using AI

## Facts

- Endpoint: POST https://tempest-2zzx.vercel.app/api/clarify
- 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-clarify-b45d46df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vtpKn_iHPcx-G6bOwJXYc

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

Example prompt: Can you simplify this insurance policy excerpt so it reads at about an 8th grade level? Here's the text: 'The indemnification clause herein shall be construed broadly to encompass all liabilities, losses, damages, costs, and expenses, including reasonable attorneys' fees, arising out of or related to any breach of this Agreement.'

## When to prefer this

Choose this endpoint when you need AI-powered text simplification tuned to a specific reading level, especially for accessibility, education, or plain-language compliance use cases. It is purpose-built for clarification rather than general rewriting or translation, making it more targeted than a generic rewrite endpoint. Prefer it over full LLM calls when you want a pay-per-use, hosted solution without managing your own model infrastructure.

## Known failure modes

- Missing required 'text' field returns a validation error
- Extremely long text may exceed token limits and return an error or truncated result
- Invalid or unrecognized reading level value may fall back to a default or return an error
- Payment failure (insufficient USDC) blocks the call before processing
- Network timeout on Vercel serverless cold start may cause occasional latency spikes

## 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 clarified, simplified version of the input text adjusted to the requested reading level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to simplify"
  },
  "reading_level": {
   "type": "string",
   "description": "Target reading level"
  }
 }
}
```

## 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-clarify-b45d46df/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)
