# Orbonomy Content Digest

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

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

## Facts

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

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

Example prompt: Can you create a digest of this article for me in a casual tone? Here's the text: 'The global semiconductor industry reached record highs in 2024, driven by AI demand and supply chain recovery...'

## When to prefer this

Choose this endpoint when you need to quickly condense or reformat text content into a digestible summary with a specific tonal quality, especially when paying per-call via x402 and needing a simple POST interface with text and tone inputs

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'tone' field returns validation error
- Payment failure via x402 protocol results in 402 response
- Overly long text input may be truncated or rejected
- Unsupported tone value may result in a generic or error response
- Service unavailability returns 5xx error

## 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 digested/summarized version of the input text in the requested 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-10ce4549/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)
