# Orbonomy Longform Content Generator

> Orbonomy Longform Content 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-14).

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

## Facts

- Endpoint: POST https://main.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-longform-content-generator-4ee52959
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YEwuJF9ao9i9dNv3MN02W

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-generator-4ee52959 -d '<json body>'
```

Example prompt: Take this rough summary I have — 'Our new product reduces energy usage by 40% through smart scheduling' — and expand it into a full long-form blog post in an optimistic, engaging tone using a journalistic style.

## When to prefer this

Choose this endpoint when you need to expand short source text into long-form written content and want to control the tone and style of the output, especially via pay-per-call micropayment without a subscription. Prefer it over generic LLM calls when you want a hosted, purpose-built content expansion endpoint with predictable pricing.

## Known failure modes

- Missing required fields (text, tone, or style) returns a 400 validation error
- Empty or very short text input may produce poor or incomplete output
- Unsupported tone or style values may cause generation failure
- Payment failure via x402 protocol returns a 402 response before content is generated
- Timeout if content generation takes too long for very large inputs

## 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 may be included in the response body under additional fields not fully documented in the schema.

## 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-generator-4ee52959/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)
