# Orbonomy Content Distill

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

Distills and condenses a block of text into a shorter, essential summary using AI-powered content processing

## Facts

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

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

Example prompt: Distill this article down to just the essential points: 'The Federal Reserve announced today that it would hold interest rates steady at 5.25%, citing mixed signals from the labor market and ongoing concerns about inflation persistence in the services sector. Officials noted that...'

## When to prefer this

Choose this endpoint when you need to quickly condense long-form text into its essential meaning without needing fine-grained control over summary length or format. Best for single-document summarization via a simple pay-per-call API with no subscription required.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or empty result
- Very long texts may exceed input limits
- Network or service unavailability returns 4xx/5xx
- Payment failure via x402 protocol prevents call from completing

## 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 input text, reduced to its core content and key ideas

## 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-b0374408/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)
