# Orbonomy Long-Form Content Generation

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

Generates long-form written content from a given text input with a specified tone and style

## Facts

- Endpoint: POST https://orbonomy.xyz/api/content/longform
- 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-long-form-content-generation-b32e8f42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pFWrNT_7k_QrWWrSDrReV

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-long-form-content-generation-b32e8f42 -d '<json body>'
```

Example prompt: Using Orbonomy's long-form content endpoint, take this product description — 'Morning Bloom is a specialty coffee shop in Portland offering single-origin pour-overs and house-made pastries' — and write a detailed, engaging blog post in an informative tone and journalistic style.

## When to prefer this

Choose this endpoint when you need pay-per-call long-form content generation without a subscription, especially if already using the x402 payment protocol and want access to Orbonomy's unified API ecosystem for content alongside other services like fact-checking and AI.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Unsupported tone or style values may cause a 400 bad request
- Payment failure via x402 protocol returns a 402 Payment Required
- Server-side generation failure returns a 500 error with success: false
- Empty or very short input text may yield poor quality or unexpected output

## 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 long-form content; the response schema is minimal so the actual article text may be nested within or alongside the success flag.

## 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-long-form-content-generation-b32e8f42/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)
