# Orbonomy Long-Form Content Generation

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

Generates long-form written content based on a given text prompt, tone, and style specification

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/content/longform
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-long-form-content-generation-c1c4c3c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_npGCQ6aPdHvCJPwbGMmb4

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

Example prompt: Write a long-form article about the future of renewable energy in a confident, optimistic tone using a journalistic style — give me something detailed and well-structured.

## When to prefer this

Choose this endpoint when you need to generate substantial long-form written content (articles, essays, blog posts, think-pieces) from a short input and want control over both tone and writing style. Prefer this over short-form or summarization endpoints when the goal is expansive, detailed output rather than brevity.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Ambiguous or empty text prompt may produce poor-quality output
- Unsupported tone or style values may cause generation failure
- Rate limiting or payment failure via x402 protocol returns 402 status
- Very long or complex prompts may cause timeouts

## 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 content was generated. The actual long-form content would be included in the response payload, generated according to the specified text topic, tone, and style.

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