# Orbonomy Content Bulletin

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

Submits text content to a bulletin publishing endpoint, returning a success status

## Facts

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

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

Example prompt: Post this as a bulletin on Orbonomy: 'Our API platform is now live with 50+ endpoints — sign up for early access today!'

## When to prefer this

Use this endpoint when you need to programmatically publish short text bulletins or announcements through the Orbonomy platform via pay-per-call x402 payments, and you need a simple fire-and-forget text submission with minimal schema complexity.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty text string may be rejected
- Network timeout or service unavailability returns 5xx error
- Payment failure via x402 protocol blocks the call
- Text too long may exceed undocumented length limits

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a 'success' boolean indicating whether the bulletin was successfully submitted and stored.

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