# Orbonomy Content Headline Generator

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

Generates a headline for a given piece of text content

## Facts

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

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

Example prompt: Can you generate a headline for this article text: 'Scientists at MIT have discovered a new compound that can break down microplastics in ocean water within hours, offering a potential breakthrough in marine pollution cleanup.'

## When to prefer this

Use this endpoint when you need a quick, pay-per-call headline generation for arbitrary text content without a subscription commitment, especially within an x402-compatible payment workflow where microtransactions per API call are acceptable.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string for text may return error or poor quality headline
- Very long text may be truncated or cause timeout
- Payment failure via x402 protocol returns 402 status before processing
- Service unavailability returns 5xx error

## 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 content.

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