# Orbonomy Content Headline Generator

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

Generates or extracts a headline from a given text input

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/content/headline
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-headline-generator-20d24a48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YnX7M4oaxjiBxOGGj16ZL

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-20d24a48 -d '<json body>'
```

Example prompt: Can you generate a headline for this article text: 'Researchers at MIT have developed a new battery technology that could extend electric vehicle range by 40%, potentially revolutionizing the EV market and accelerating adoption worldwide.'

## When to prefer this

Use this endpoint when you need a pay-per-call, low-overhead headline generation service that works via the x402 micropayment protocol. Best suited for one-off or low-volume headline generation tasks where you want to pay only for what you use without a subscription.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or very short text may produce poor or no headline
- Payment failure via x402 protocol returns 402 status
- Server error returns non-success response
- Overly long text may be truncated or rejected

## 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 derived from the input text.

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