# Orbonomy Content Digest

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

Generates a toned digest or summary of a given text, adapting the output style to a specified tone

## Facts

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

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

Example prompt: Can you create a digest of this product launch article in a professional tone: 'Today we announced our new platform that brings together AI tools, data services, and accommodation APIs under a single pay-per-call model, making it easier than ever for developers to build intelligent applications.'

## When to prefer this

Choose this endpoint when you need to condense or reformat a body of text into a digest with a specific stylistic tone — particularly useful for newsletter creation, content repurposing, or generating summaries with a controlled voice. Prefer this over generic summarization if tone customization is important to your use case.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'tone' field returns validation error
- Unsupported or unrecognized tone value may produce unexpected output
- Empty or very short text may yield a poor-quality digest
- Payment failure via x402 protocol blocks the call
- Rate limiting or quota issues may result in 402 or 429 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

Returns a JSON object with a success boolean and presumably the generated digest or summarized content adapted to 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-f71b37a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
