# Orbuis Summarize Text (pay-per-call, x402)

> Orbuis Summarize Text (pay-per-call, x402) is a paid API for AI agents from agents.orbuis.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-17).

Summarizes a block of text into a paragraph or bullet-point format using Orbuis's on-device model, billed per call in USDC over x402 with no API key required.

## Facts

- Endpoint: POST https://agents.orbuis.com/tools/summarize
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbuis-summarize-text-pay-per-call-x402-7bc7b434
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HjPhfGvh4TWIn9GOQ5bek

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 orbuis-summarize-text-pay-per-call-x402-7bc7b434 -d '<json body>'
```

Example prompt: Can you summarize the following article in bullet points, keeping it under 80 words and in English? [paste of article text]

## When to prefer this

Choose this endpoint when you need a lightweight, pay-as-you-go text summarizer with no account setup — especially in agent workflows where cost-per-call billing via USDC/x402 is preferred, or when you want bullet-point vs paragraph style control and optional multilingual output. Ideal for single-call, low-friction summarization without committing to a subscription or managing API keys.

## Known failure modes

- Text too short (below minLength of 1) or too long (above 12,000 characters) — validation error
- maxWords out of range (below 20 or above 400) — validation error
- Payment failure over x402 (insufficient USDC balance or unsupported chain) — 402 response
- Invalid style enum value — request rejected
- Network timeout if on-device model is briefly unavailable

## How this service works

Text tools for AI agents, answered by Orbuis's own on-device model and sold per call over x402. No account or API key. Tools: Summarize text, Extract structured JSON, Ask. Pay in USDC on Base or Arc.

## Output

Returns a JSON object with ok (boolean), the model name used (e.g. 'orbuis-core'), the style applied (paragraph or bullets), the word count, and the summary string itself.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 12000,
   "minLength": 1,
   "description": "Text to summarize"
  },
  "style": {
   "enum": [
    "paragraph",
    "bullets"
   ],
   "type": "string",
   "default": "paragraph"
  },
  "language": {
   "type": "string",
   "maxLength": 32,
   "description": "Output language, e.g. \"English\" (default: the input's language)"
  },
  "maxWords": {
   "type": "integer",
   "default": 120,
   "maximum": 400,
   "minimum": 20,
   "description": "Upper bound on summary length"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "model": "orbuis-core",
  "style": "paragraph",
  "words": 23,
  "summary": "Orbuis is an agentic software suite that other agents can pay per call in USDC over x402; it answers with its own on-device model."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbuis-summarize-text-pay-per-call-x402-7bc7b434/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.orbuis.com](https://www.zero.xyz/host/agents.orbuis.com/llms.txt)
