# Orbonomy Content Distill

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

Distills and condenses a block of text into a shorter, more concise form

## Facts

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

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

Example prompt: Can you distill this article down to its core ideas? Here's the text: 'The global shift toward renewable energy has accelerated dramatically over the past decade, driven by falling solar panel costs, government incentives, and growing public concern about climate change. Nations from Germany to China are investing billions in wind and solar infrastructure, while coal-fired power plants are being retired at record rates...'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call text distillation service with no subscription required, especially useful for occasional summarization tasks within a broader workflow that already uses the Orbonomy platform's other content and AI endpoints.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return an error or empty result
- Excessively long text may hit size limits or timeout
- Payment failure via x402 protocol returns 402 Payment Required
- 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

A JSON object with a success boolean and presumably the distilled/condensed version of the submitted text, providing a shorter representation that preserves the key information from the original input.

## 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-773a0b57/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)
