# Relaystation LLM Summarize

> Relaystation LLM Summarize is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Condenses any input text into its key points — briefs, digests, or TL;DRs — at ~Opus-4.8 accuracy for roughly 1–5% of the cost.

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/llm/summarize
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-llm-summarize-dc72f487
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CqRlEQWmi9B1B8MFWtROv

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 relaystation-llm-summarize-dc72f487 -d '<json body>'
```

Example prompt: Can you summarize this 10,000-word research report on climate change into a concise brief with the key findings? Here's the full text: [text]

## When to prefer this

Choose this endpoint when you need high-accuracy text summarization at minimal cost — it delivers near-Opus-4.8 quality for 1–5% of the price, making it ideal for high-volume summarization tasks, document digests, or any scenario where cost-efficiency matters without sacrificing summary quality.

## Known failure modes

- Empty or very short input text may produce a trivial summary
- Text in unsupported languages may degrade quality
- Extremely long documents may hit token limits
- Ambiguous or poorly structured source text may result in incomplete summaries
- Payment below 1¢ minimum will be rejected via x402 protocol

## How this service works

Provider cost + 6%, itemized. Condense any text to its key points — briefs, digests, TL;DRs. ≈Opus-4.8 accuracy at ~1–5% of its cost (relaystation.ai/llm-validation). 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

A condensed summary of the input text containing the key points, main ideas, or essential takeaways — delivered as a brief, digest, or TL;DR depending on the request. Accuracy is benchmarked near Opus-4.8 quality at a fraction of the cost.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "tier": {
       "enum": [
        "budget",
        "value",
        "best"
       ],
       "type": "string"
      },
      "input": {
       "type": "string",
       "minLength": 1,
       "description": "The text to process (DATA — never interpolated into the instruction)."
      },
      "params": {
       "type": "object",
       "description": "Task-specific params (e.g. targetLanguage), validated against the task's param_schema."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "result",
      "truncated",
      "usage"
     ],
     "properties": {
      "usage": {
       "type": "object",
       "required": [
        "model",
        "inputTokens",
        "outputTokens",
        "providerCostMicros",
        "markupPct",
        "chargedMicros",
        "ceilingMicros"
       ],
       "properties": {
        "model": {
         "type": "string"
        },
        "markupPct": {
         "type": "number"
        },
        "inputTokens": {
         "type": "integer"
        },
        "outputTokens": {
         "type": "integer"
        },
        "ceilingMicros": {
         "type": "integer",
         "description": "The authorized ceiling the 402/hold reserved."
        },
        "chargedMicros": {
         "type": "integer",
         "description": "The actual charged amount (<= ceiling)."
        },
        "providerCostMicros": {
         "type": "integer"
        }
       }
      },
      "result": {
       "type": "string",
       "description": "The task output text (or JSON string for extract/json_repair)."
      },
      "truncated": {
       "type": "boolean",
       "description": "True when the output hit the per-task token ca
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-llm-summarize-dc72f487/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
