# Tempest AI Content Engine — Clarify Endpoint

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

Simplifies and clarifies text to a specified reading level using AI

## Facts

- Endpoint: POST https://tempestars.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-endpoint-6338e0da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-pS8Fr6GHJyrguBIGNedC

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-endpoint-6338e0da -d '<json body>'
```

Example prompt: Can you simplify this paragraph so it's easy for a 6th grader to understand? Here's the text: 'The mitochondrial electron transport chain facilitates the synthesis of adenosine triphosphate through oxidative phosphorylation.'

## When to prefer this

Choose this endpoint when you need to automatically lower the complexity or reading level of existing text — especially for making technical, legal, or medical content accessible to broader audiences. It is distinct from general rewriting or translation endpoints because it focuses specifically on readability adaptation.

## Known failure modes

- Missing required 'text' field returns a validation error
- Very long text inputs may be truncated or rejected
- Unrecognized reading_level values may be ignored or cause errors
- Payment failure (insufficient USDC) blocks the request
- Empty string input may return an error or empty output

## 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-endpoint-6338e0da/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)
