# Orbonomy LLM Text Summarizer

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

Summarizes a block of text into a concise summary using an AI language model, billed per call via x402 protocol.

## Facts

- Endpoint: POST https://app.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-text-summarizer-d22b1d97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZivZtmF7ljNR2ulbcDHBX

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-text-summarizer-d22b1d97 -d '<json body>'
```

Example prompt: Can you summarize the following article for me? It's quite long and I just need the key points: 'Artificial intelligence has been transforming industries at an unprecedented pace, with breakthroughs in language models, computer vision, and robotics reshaping how businesses operate...'

## When to prefer this

Use this endpoint when you need a quick, pay-per-use AI text summarization without a subscription, especially when integrating with x402-compatible payment flows or when you only need occasional summarization without committing to a monthly API plan.

## Known failure modes

- Missing required 'text' field returns a 400 error
- Payment not provided or rejected by x402 protocol returns a 402 Payment Required
- Text too long may exceed model context limits
- Empty string input may return a failure response
- Service unavailability returns 5xx errors

## How this service works

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

## Output

Returns a JSON object with a boolean 'success' field and presumably the generated summary of the input text.

## 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-text-summarizer-d22b1d97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
