# Orbonomy Content Bulletin

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

Submits a text payload to generate or publish a content bulletin via the Orbonomy unified API platform.

## Facts

- Endpoint: POST https://orbonomy.xyz/api/content/bulletin
- Price: $0.15/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-bulletin-3fd631fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G3BRzGNPBb-aMk3wg2Kw0

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-bulletin-3fd631fe -d '<json body>'
```

Example prompt: Post a content bulletin with this text: 'Q2 earnings are up 14% year-over-year — read our full report on the investor portal.'

## When to prefer this

Use this endpoint when you need to programmatically publish a short-form content bulletin from a text string on the Orbonomy platform, especially in automated or agentic workflows that produce dynamic text content to broadcast.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty or blank text string may result in rejection
- Payment failure via x402 protocol returns 402 Payment Required
- Malformed JSON body returns 400 Bad Request
- Server-side content processing failure returns 500

## 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 boolean 'success' field indicating whether the bulletin was successfully created and submitted.

## 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-bulletin-3fd631fe/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)
