# Orbonomy Content Headline Generator

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

Generates a headline from a given block of text using Orbonomy's pay-per-call content API

## Facts

- Endpoint: POST https://www.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-786f013a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1GCmMUP9XW5_uih3zFaE9

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-786f013a -d '<json body>'
```

Example prompt: Can you generate a headline for this article text: 'Scientists at MIT have discovered a new carbon-capture material that can absorb CO2 at twice the rate of existing solutions, potentially revolutionizing climate change mitigation efforts worldwide.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call headline generation from arbitrary text without committing to a subscription. Best for one-off content publishing workflows, CMS automation, or journalism tools where billing per article is preferred over flat-rate AI APIs.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return a failure or generic headline
- Payment failure via x402 protocol returns 402 status before processing
- Very short or malformed text may produce a low-quality headline
- Rate limits or server errors may return 5xx responses

## 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 headline was generated, likely accompanied by the generated headline string for the submitted 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-786f013a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
