# Orbonomy Longform Content Generation

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

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

## Facts

- Endpoint: POST https://www.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-longform-content-generation-be9fda35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H9_dCQQkpcamEqwX2zBCG

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-longform-content-generation-be9fda35 -d '<json body>'
```

Example prompt: Take my draft — 'We launched our new product last quarter and saw strong adoption across SMBs' — and expand it into a full long-form article using a professional tone and a journalistic style.

## When to prefer this

Choose this endpoint when you need to programmatically expand short texts, outlines, or drafts into full long-form written pieces with explicit control over tone and style. Useful for content pipelines, automated blog generation, or AI-assisted writing workflows that require pay-per-call pricing without subscriptions.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Empty or too-short input text may yield low-quality or failed output
- Unsupported tone or style values may cause generation failure
- Payment failure via x402 protocol results in 402 response and no content
- Service timeout for very long input texts

## 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 long-form content was generated. The actual generated content is presumably included in additional response fields beyond what the minimal schema documents.

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