# Orbonomy Long-Form Content Generation

> Orbonomy Long-Form Content Generation 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-14).

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

## Facts

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

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

Example prompt: Take this text — 'Our new product helps small businesses automate invoicing and save hours each week' — and expand it into a long-form article using a persuasive tone and a journalistic style.

## When to prefer this

Use this endpoint when you need to generate long-form written content programmatically with control over both tone and style, and you are operating in a pay-per-call context using the x402 payment protocol. Prefer this over general LLM APIs when you want a dedicated content generation endpoint with predictable pricing at $0.15 USDC per call.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Ambiguous or unsupported tone/style values may yield unexpected output
- Payment failure via x402 protocol blocks the request before processing
- Very short or empty text input may produce low-quality or empty output
- Server-side AI generation errors may return success:false with no content

## 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, though the response schema is minimal and may include the content body in an undocumented field.

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