# Orbonomy Content Digest

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

Generates a toned digest or summary of provided text content using a specified tone style

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/content/digest
- Price: $0.15/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-digest-0c31bd38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E2QTBuHi8Q4j_2kbvjtfo

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-digest-0c31bd38 -d '<json body>'
```

Example prompt: Can you create a digest of this article in a professional tone: 'Artificial intelligence is rapidly transforming industries from healthcare to finance, with generative models leading the charge in automating complex creative and analytical tasks...'

## When to prefer this

Choose this endpoint when you need to quickly condense long-form text into a digestible summary with a specific tonal quality — particularly useful for newsletters, articles, or reports where tone consistency matters. Prefer this over generic summarization when tone control (formal, casual, authoritative, friendly) is a requirement.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'tone' field returns validation error
- Empty or excessively long text may cause processing failure
- Invalid or unrecognized tone value may result in unexpected output or error
- Payment failure via x402 protocol blocks the request entirely

## 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 the generated digest or condensed version of the input text in the specified tone

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "tone"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "tone": {
   "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-digest-0c31bd38/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)
