# Synergy Text Summarization

> Synergy Text Summarization is a paid API for AI agents from api.exo-trust.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Condenses articles, reports, or transcripts into a structured summary with key points, with optional word-count control.

## Facts

- Endpoint: POST https://api.exo-trust.com/execute/summarize
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synergy-text-summarization-fae80e4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GRQrA7cl9uM-bGtohn72f

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 synergy-text-summarization-fae80e4a -d '<json body>'
```

Example prompt: Can you summarize this 3,000-word earnings report transcript into a structured summary with key points, keeping it under 150 words? [paste text]

## When to prefer this

Choose this endpoint when you need a structured, key-point-oriented summary from long-form text such as articles, reports, or transcripts. It is especially useful when you want a concise digest with an explicit word cap. Prefer this over generic LLM summarization when you need consistent structured output and are willing to pay per-call for reliability and formatting guarantees.

## Known failure modes

- Empty or missing text field returns a validation error
- Extremely long inputs may exceed token limits and return a truncation or error response
- max_words set too low may result in incomplete or overly vague summaries
- Non-textual or binary input returns a parsing error
- Rate limits or payment failures return 402 or 429 status codes

## How this service works

Condense articles, reports, or transcripts into a structured summary with key points.

## Output

A structured summary of the input text, organized with key points and condensed content. The response reflects the essential ideas of the source material and respects the max_words constraint if provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  },
  "max_words": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "summary": "example",
   "key_points": [
    "example"
   ],
   "word_count": 1
  },
  "status": "completed",
  "receipt": {
   "amount": 0.05,
   "method": "x402",
   "settled": true,
   "currency": "USDC"
  },
  "task_id": "00000000-0000-0000-0000-000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synergy-text-summarization-fae80e4a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.exo-trust.com](https://www.zero.xyz/host/api.exo-trust.com/llms.txt)
