# Orbonomy LLM Summarize

> Orbonomy LLM Summarize is a paid API for AI agents from www.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Summarizes a given text string into a concise summary using an LLM, returning a success status.

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/llm/summarize
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-summarize-f6852296
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9reQXDoR05hsjbQH_l04V

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 orbonomy-llm-summarize-f6852296 -d '<json body>'
```

Example prompt: Can you summarize the following article for me: 'Artificial intelligence has rapidly transformed industries over the past decade, with applications ranging from healthcare diagnostics to autonomous vehicles. Researchers continue to push the boundaries of what machines can learn and do, raising both excitement and ethical concerns about the future of work and society.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call LLM-based text summarization without committing to a full LLM subscription. Ideal for lightweight summarization tasks within an agentic workflow where cost control per call matters and no special summarization pipeline is needed.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Empty string for 'text' may return an error or empty summary
- Payment failure (HTTP 402) if x402 payment is not provided or is insufficient
- Very long text inputs may be truncated or rejected depending on LLM token limits
- Service unavailability returns a 5xx error

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a 'success' boolean field indicating whether the summarization was completed; the summary content would typically accompany this in the response body.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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