# api.strale.io Text Summarizer

> api.strale.io Text Summarizer is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-13).

Summarizes arbitrary text into paragraph, bullet points, or one-sentence format with configurable max word count

## Facts

- Endpoint: GET https://api.strale.io/x402/summarize
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-912c4911
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WbI2xVpFDntNhdrF32_0x

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 api-strale-io-912c4911
```

Example prompt: Can you summarize this article in bullet points, keeping it under 100 words? Here's the text: 'Artificial intelligence has transformed industries ranging from healthcare to finance. Companies are investing billions in AI research, hoping to automate routine tasks, improve decision-making, and unlock new capabilities. Critics warn of job displacement and ethical risks, while proponents argue that AI will create more jobs than it eliminates and drive unprecedented productivity gains.'

## When to prefer this

Use this endpoint when you need quick, configurable text summarization with style control (paragraph vs bullets vs one-sentence) and a word count cap. Prefer it over general LLM summarization when you need a lightweight, metered, cost-predictable API call without managing your own model.

## Known failure modes

- Missing required 'text' query parameter returns an error
- Invalid 'style' value outside allowed options may return an error or default behavior
- Extremely long input text may be truncated or rejected
- max_length set too low for meaningful summarization may produce poor results
- Non-English text may produce degraded or unexpected results

## How this service works

Summarize text into a concise format. Supports paragraph, bullet points, or one-sentence styles. Configurable max length.

## Output

Returns a concise summary of the input text formatted according to the requested style (paragraph, bullet points, or one_sentence), respecting the approximate max word count limit provided.

## Example request

```json
{
 "text": "Artificial intelligence has transformed industries ranging from healthcare to finance. Companies are investing billions in AI research, hoping to automate routine tasks, improve decision-making, and unlock new capabilities. Critics warn of job displacement and ethical risks, while proponents argue that AI will create more jobs than it eliminates and drive unprecedented productivity gains.",
 "style": "bullets",
 "max_length": 100
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Text to summarize"
      },
      "style": {
       "type": "string",
       "description": "Summary style: paragraph, bullets, or one_sentence"
      },
      "max_length": {
       "type": "integer",
       "description": "Approximate max word count"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-912c4911/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
