# Orbonomy LLM Text Summarizer

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

Condenses a block of text into a shorter summary using an LLM via pay-per-call API

## Facts

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

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-de412004 -d '<json body>'
```

Example prompt: Can you summarize the following article for me? It's pretty long and I just need the key takeaways: [paste article text here].

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call LLM-powered text summarization without committing to a subscription. Useful for agents that only occasionally need to summarize content and want micro-payment billing via the x402 protocol rather than managing API keys for a dedicated LLM provider.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or very short text may produce trivial or empty summary
- Extremely long text may be truncated or rejected due to token limits
- Payment failure via x402 protocol results in 402 response and no summary
- LLM service downtime results in 5xx error
- Malformed JSON body returns 400 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

Returns a JSON object with a success boolean and presumably the summarized text derived from the input. The condensed summary is generated by an LLM and reflects the key points of the submitted 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-de412004/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
