# Orbonomy Content Draft Generator

> Orbonomy Content Draft Generator 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 draft piece of content from provided text, applying a specified tone and style

## Facts

- Endpoint: POST https://main.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-d91f0991
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dt2MZqWJiFggF9i-RA0BN

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

Example prompt: Can you draft this rough blurb I wrote into polished content — use a professional tone and a concise editorial style: 'We launched our new product last week and customers seem to really like it so far, sales are up.'

## When to prefer this

Choose this endpoint when you need to take existing raw text and reshape it into a styled, toned draft — particularly when you want pay-per-call pricing with no subscription commitment. Ideal for one-off content drafting tasks where you supply source text and specify the desired voice and format.

## 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 cause rejection or unexpected output
- Payment failure via x402 protocol returns 402 Payment Required
- Server errors return 500 with no draft produced

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a 'success' boolean indicating whether the draft was generated. The actual drafted content would be included in the response body upon successful generation.

## 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-d91f0991/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)
