# Tempest AI Proofreader

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

Proofreads submitted text using AI, identifying and correcting grammar, spelling, punctuation, and style errors.

## Facts

- Endpoint: POST https://trempest.vercel.app/api/proofread
- Price: $0.15/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-proofreader-cbd86500
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_377wnvHeTVkVszX96A16V

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

Example prompt: Can you proofread this paragraph and fix any grammar, spelling, or punctuation mistakes? Here's the text: 'Their going to the store tommorow, and they will buys some grocerys for the week.'

## When to prefer this

Use this endpoint when you need a fast, pay-per-call AI proofreading step without a subscription — ideal for agents that need to polish user-generated text, validate copy before publishing, or clean up drafts on demand. Prefer this over generic LLM prompting when you want a dedicated, consistently priced proofreading call billed in USDC via x402.

## Known failure modes

- Empty or missing 'text' field returns a 400 validation error
- Extremely long texts may time out or be truncated
- Ambiguous or domain-specific jargon may be incorrectly flagged as errors
- Non-English text may not be proofread accurately
- Payment failure (insufficient USDC) results in a 402 response blocking the call

## 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 flag and a data object containing the proofread result — typically the corrected version of the input text along with identified errors or suggested fixes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to proofread"
  }
 }
}
```

## 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-proofreader-cbd86500/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)
