# Tempest AI Content Engine — Clarify

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

Simplifies and clarifies text to a specified reading level using AI

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/clarify
- 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-content-engine-clarify-84eb73e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O-yBbKAN52nX-koJP5il7

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

Example prompt: Can you clarify and simplify this passage for a 5th-grade reading level? Here's the text: 'The mitochondria orchestrate cellular respiration through a series of oxidative phosphorylation reactions that yield adenosine triphosphate.'

## When to prefer this

Use this endpoint when you need to programmatically simplify or clarify text to a target audience reading level at scale, particularly when paying per-call with USDC is acceptable and you need AI-powered readability adjustment without building your own model pipeline.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Invalid or unrecognized reading_level value may produce unexpected simplification
- Payment of 0.2 USDC not provided results in a 402 Payment Required response
- Very long texts may exceed token limits and return a truncated or error response
- Network timeout on the Vercel serverless deployment under heavy load

## 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 specified 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-84eb73e3/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)
