# Orbonomy Content Distill

> Orbonomy Content Distill is a paid API for AI agents from backup-v2api.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, summarized form

## Facts

- Endpoint: POST https://backup-v2api.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-ee35197a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_moFBQWQs_lZcMz5JaGAXr

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

Example prompt: Can you distill this article into its key points? Here's the text: 'The global semiconductor shortage has caused widespread disruption across industries from automotive to consumer electronics, driven by a surge in demand during the pandemic, underinvestment in fab capacity, and complex geopolitical tensions restricting supply chains. Experts predict the shortage will ease by late 2025 as new fabs come online.'

## When to prefer this

Use this endpoint when you need a quick, pay-per-call text distillation without committing to a subscription, especially when working within an x402-enabled micropayment workflow. Best for one-off summarization tasks on arbitrary text blobs.

## Known failure modes

- Missing 'text' field returns validation error
- Extremely long text may cause timeout or truncation
- Empty string input may return an error or empty distillation
- Payment failure via x402 protocol results in 402 response before processing

## 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 a distilled/summarized version of the input text, condensed to its essential meaning.

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