# Tempest AI Content Engine — Condense

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

Summarizes and condenses long text into a shorter version using AI, with optional style and word-count controls.

## Facts

- Endpoint: POST https://tempest-2zzx.vercel.app/api/condense
- 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-condense-9d151395
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x2gkjcz4pHZHUUpq5-dSj

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-condense-9d151395 -d '<json body>'
```

Example prompt: Can you condense this 800-word product review into a concise summary of no more than 80 words, keeping a professional style? Here's the text: [paste text]

## When to prefer this

Choose this endpoint when you need to programmatically shorten or summarize text at scale with pay-per-call pricing in USDC — particularly when you want control over output length (via max_length) and tone (via style), and don't want to manage an LLM subscription or infrastructure yourself.

## Known failure modes

- Text shorter than 50 characters returns a validation error
- Missing required 'text' field returns a 400-level error
- Very long inputs may exceed model context limits and fail or be truncated
- Invalid 'style' values may be ignored or cause unexpected output
- Payment failure or insufficient USDC balance blocks the request

## 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 condensed/summarized version of the input text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to summarize (min 50 chars)"
  },
  "style": {
   "type": "string",
   "description": "Summary style"
  },
  "max_length": {
   "type": "number",
   "description": "Max summary length in words"
  }
 }
}
```

## 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-condense-9d151395/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)
