# Tempest AI Content Engine — Condense

> Tempest AI Content Engine — Condense is a paid API for AI agents from trempest.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Summarizes and condenses a block of text into a shorter version using AI, with optional style and length controls

## Facts

- Endpoint: POST https://trempest.vercel.app/api/condense
- 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-condense-715e4188
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9rhyV2LASgYmkTsevLIEZ

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-715e4188 -d '<json body>'
```

Example prompt: Can you condense this article into a bullet-point style summary, keeping it under 100 words? Here's the text: 'Artificial intelligence has transformed industries from healthcare to finance over the past decade, enabling faster diagnostics, more personalized recommendations, smarter fraud detection, and unprecedented automation of routine tasks that once required significant human labor.'

## When to prefer this

Use this endpoint when you need to automatically shorten or summarize a block of text with optional style control and a word-count cap. Prefer it over generic LLM calls when you want a pay-per-call, infrastructure-free summarization pipeline with deterministic pricing via USDC.

## Known failure modes

- Text shorter than 50 characters returns a validation error
- Missing required 'text' field returns a 400 error
- Payment not provided or insufficient USDC balance triggers a 402 Payment Required
- Overly large text inputs may time out or be truncated
- Invalid style value may produce unexpected output format

## 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 condensed/summarized version of the input text, respecting any style and word-count constraints provided

## 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-715e4188/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)
