# Orbonomy Content Draft Generator

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

Generates a content draft from input text with a specified tone and style

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/content/draft
- 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-draft-generator-76d60446
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AwzBm4Qy8V0oXY6eWle_1

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-draft-generator-76d60446 -d '<json body>'
```

Example prompt: Draft some content for me using this text: 'We are launching a new productivity app for remote teams next month.' Make it professional in tone and use a concise, direct style.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call AI-generated content draft with explicit tone and style control, especially within a workflow already using the Orbonomy platform or the x402 payment protocol.

## Known failure modes

- Missing required fields (text, tone, or style) returns a 400 error
- Invalid or unsupported tone/style values may return an error or unexpected output
- Payment failure via x402 protocol prevents the call from completing
- Very long input text may be truncated or rejected
- Service unavailability returns a 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 generated content draft based on the provided text, tone, and style parameters

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "tone",
  "style"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "tone": {
   "type": "string"
  },
  "style": {
   "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-draft-generator-76d60446/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
