# Orbonomy Content Draft Generator

> Orbonomy Content Draft Generator 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-14).

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

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/content/draft
- 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-draft-generator-4a19039d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AJrcPrnH1EyIA5DECvH1v

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

Example prompt: Take this rough text — 'We launched a new feature that lets users export reports as PDFs' — and draft it in a persuasive tone with a professional style.

## When to prefer this

Choose this endpoint when you need to quickly generate a styled content draft from raw text input and can specify both tone and style. It is a pay-per-call service suited for on-demand content generation tasks where you want control over voice and format without a subscription commitment.

## Known failure modes

- Missing required fields (text, tone, or style) results in a 400 validation error
- Payment of $0.15 USDC not provided via x402 protocol returns 402 Payment Required
- Unsupported tone or style values may cause a 422 unprocessable entity error
- Empty or very short text input may result in a low-quality or empty draft
- Service downtime returns 500 or 503 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 indicating whether the content draft was generated. The actual draft content may be embedded in the response body; the schema confirms task completion.

## 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-4a19039d/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)
