# Orbonomy Content Headline Generator

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

Generates or extracts a headline from a given text passage using a pay-per-call content API

## Facts

- Endpoint: POST https://backup-v2api.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-24aaeb8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KBcqi1tVmS__kLae9iz7f

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

Example prompt: Can you generate a headline for this article text: 'Scientists have discovered a new species of deep-sea fish that can survive at extreme depths previously thought uninhabitable, opening new questions about the limits of marine life.'

## When to prefer this

Use this endpoint when you need a quick, pay-per-call headline or title generation from a block of text without needing a full LLM subscription. Best suited for one-off content tasks where per-call USDC micropayments are acceptable and you want a content-specific API rather than a general-purpose AI.

## Known failure modes

- Missing 'text' field returns validation error
- Empty string input may return success:false or an unhelpful headline
- Payment failure via x402 protocol results in 402 response before processing
- Text too long may be truncated or rejected
- Ambiguous or very short input may produce low-quality headlines
- Service unavailability on backup subdomain may yield 503

## 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 a generated headline string derived from the input text. Exact headline field name is not documented in the response schema beyond the success flag.

## 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-24aaeb8a/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)
