# Tempest AI Content Engine — Condense (Summarize)

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

Condenses long text into a shorter summary using AI, with configurable style and maximum word length

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/condense
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-content-engine-condense-summarize-7c977a2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u3Lo2UvF2cL_fmRpMp5Ob

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-summarize-7c977a2c -d '<json body>'
```

Example prompt: Can you condense this 800-word article into a bullet-style summary of no more than 100 words? Here's the text: [paste article]. Keep it concise and factual.

## When to prefer this

Use this endpoint when you need to shorten or summarize existing text content via a pay-per-call API without managing AI infrastructure. Prefer this over general-purpose LLM APIs when you want a pre-built summarization endpoint with built-in USDC micropayment billing. Best for pipelines that need summarization as a discrete, billable step.

## Known failure modes

- Input text shorter than 50 characters — validation error
- Missing required 'text' field — 400 bad request
- Payment not included or insufficient USDC — 402 payment required
- Text too large for context window — upstream AI error
- Invalid style parameter value — may default or return error
- Network timeout on AI backend — 500 or timeout error

## 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, respecting the requested style and maximum length constraints.

## 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-summarize-7c977a2c/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)
