# Orbonomy Longform Content Generator

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

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

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/content/longform
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-longform-content-generator-04bfb2f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lz2C7uDHod3Ov_bT_zPCj

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

Example prompt: Take this draft — 'Climate change is accelerating. Renewable energy adoption is key. Governments must act now.' — and expand it into a long-form article using an authoritative tone and a journalistic style.

## When to prefer this

Use this endpoint when you need to programmatically generate long-form written content from a seed text with specific tonal and stylistic control, and you are operating within the x402 micropayment ecosystem. It is well-suited for content pipelines that pay per generation rather than per subscription.

## Known failure modes

- Missing required fields (text, tone, or style) returns a 400 or validation error
- Payment not completed via x402 protocol results in a 402 Payment Required
- Unsupported tone or style values may cause a rejection or unexpected output
- Server errors on backup domain may result in 5xx responses
- Empty or very short text input may produce poor or minimal 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, though the response schema only formally documents the success 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-longform-content-generator-04bfb2f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
