# Orbonomy Content Draft Generator

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

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

## Facts

- Endpoint: POST https://orbonomy.xyz/api/content/draft
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-draft-generator-1b7c2162
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pv2TBrsCz40wZCshfGxL5

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

Example prompt: Can you turn this rough text into a polished draft — use a professional tone and a blog-style format: 'We launched our new product last week. People seemed to like it. Sales are up. Team is happy.'

## When to prefer this

Choose this endpoint when you need to quickly transform raw or rough text into a styled draft with a specific tone and writing style, particularly in a pay-per-call context without subscription overhead. Useful when you want content generation tied to concrete style and tone parameters rather than open-ended prompting.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Invalid or unsupported tone/style values may result in failed generation
- Payment failure via x402 protocol results in 402 response before processing
- Empty or extremely short text input may yield poor or failed draft output
- 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 indicating whether the draft was generated. The drafted content would be returned on a successful response, though full response schema details are limited.

## 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-1b7c2162/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)
