# Orbonomy Content Headline Generator

> Orbonomy Content Headline Generator is a paid API for AI agents from app.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Generates a headline for a given piece of text content

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/content/headline
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-headline-generator-39fbb6e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_19F9eU-jGP-GN1IniGKiq

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-content-headline-generator-39fbb6e4 -d '<json body>'
```

Example prompt: Can you generate a headline for this article text: 'Scientists have discovered a new species of deep-sea fish capable of producing light in total darkness, offering new insights into bioluminescence and underwater ecosystems.'

## When to prefer this

Use this endpoint when you need a quick, pay-per-call headline generation from plain text without committing to a subscription-based NLP or AI writing service. Suitable for one-off content workflows, CMS pipelines, or agents that need to title articles on the fly at low cost.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return generic or low-quality headline
- Very long text inputs may be truncated or rejected
- Payment failure via x402 protocol results in 402 response before processing
- Ambiguous or very short text may yield poor headline quality

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a success boolean and presumably a generated headline string derived from the submitted text input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "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-content-headline-generator-39fbb6e4/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)
