# Orbonomy Content Draft Generator

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

Generates a styled content draft from input text using a specified tone and writing style

## Facts

- Endpoint: POST https://api.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-6e4c565a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jHhVLL1dgXOXL2ItngZ5H

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

Example prompt: Can you draft some content from this text I have: 'Our new product launches next week and features improved battery life and a sleeker design.' — make the tone enthusiastic and the style conversational?

## When to prefer this

Choose this endpoint when you need to quickly generate a styled content draft from existing text with control over tone and writing style, especially in a pay-per-call model without subscription overhead. Prefer this over general LLM prompting when you want a structured, API-driven content drafting workflow integrated into an agent pipeline.

## Known failure modes

- Missing required fields (text, tone, or style) returns a 400 validation error
- Empty or malformed text input may result in a failed generation
- Unsupported tone or style values may return an error or unexpected output
- Payment failure via x402 protocol results in a 402 Payment Required response
- Server-side generation errors return a 500 with success: false

## 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 draft was generated. The actual draft content would be included in the response payload if successful.

## 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-6e4c565a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
