# Orbonomy Content Distill

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

Distills and condenses a block of text into a shorter, more digestible summary or key points

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/content/distill
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-distill-62e59edd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kRYmUnzaPaY5my3MOhdmL

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-content-distill-62e59edd -d '<json body>'
```

Example prompt: Can you distill this 2,000-word article down to its key points for me? Here's the text: 'Artificial intelligence has transformed numerous industries over the past decade, with applications ranging from healthcare diagnostics to autonomous vehicles...'

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-subscription text distillation service powered by the x402 micropayment protocol. Ideal for agents that occasionally need to summarize arbitrary text without committing to a monthly plan, especially when cost predictability at $0.10 per call matters.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or empty result
- Extremely long text may hit payload limits
- Service unavailable if payment via x402 fails or is insufficient
- Network timeout for very large documents

## 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 a distilled/summarized version of the input text, condensed to highlight the most important information from the original content.

## 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-content-distill-62e59edd/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)
