# Orbonomy Content Bulletin API

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

Generates or publishes a content bulletin from submitted text via pay-per-call API

## Facts

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

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-api-58c1ac42 -d '<json body>'
```

Example prompt: Can you post this as a content bulletin on Orbonomy: 'Our new product launch is live — check out the latest features on our website starting today.'

## When to prefer this

Use this endpoint when you need to publish a short content bulletin or announcement from raw text input via a pay-per-call model using the x402 protocol, and you want minimal setup overhead.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string text may be rejected
- Payment not processed via x402 results in 402 response
- Malformed JSON body returns 400 error
- Service unavailable 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 boolean 'success' field indicating whether the bulletin was created or published successfully.

## 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-api-58c1ac42/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)
