# Orbonomy Content Distill

> Orbonomy Content Distill is a paid API for AI agents from api.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 focused summary or extract

## Facts

- Endpoint: POST https://api.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-93a63e07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vOY7iS4JpAUSZoZQaB7Pb

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

Example prompt: Can you distill this article down to its key points? Here's the full text: 'Artificial intelligence is rapidly transforming industries worldwide. From healthcare to finance, organizations are deploying machine learning models to automate complex tasks, reduce costs, and uncover insights that were previously hidden in large datasets...'

## When to prefer this

Choose this endpoint when you need to condense a long piece of text into a shorter, essential version and want a pay-per-call model without subscription commitments. Useful for agents that occasionally need summarization rather than high-volume continuous use.

## Known failure modes

- Empty or missing text field returns validation error
- Text too long may exceed processing limits
- Service unavailable returns non-200 response
- Payment failure via x402 protocol blocks the call
- Ambiguous or non-textual input may produce poor distillation quality

## 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 distilled/condensed version of the submitted text, reducing a long input into a shorter, more essential form.

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