# Orbonomy Content Broadcast

> Orbonomy Content Broadcast 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-13).

Broadcasts or publishes text content in a specified tone via the Orbonomy unified API platform

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/content/broadcast
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-broadcast-04eb18ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZJ7bmCiOUVsVJYOpTxOAB

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-broadcast-04eb18ca -d '<json body>'
```

Example prompt: Can you broadcast this message through Orbonomy in a professional tone: 'Our platform is launching new features this Friday — stay tuned for major updates that will transform your workflow'?

## When to prefer this

Choose this endpoint when you need to broadcast or publish text content with a specific tone via a pay-per-call API without managing subscriptions or infrastructure. Suitable for automated content distribution pipelines using the x402 micropayment protocol.

## Known failure modes

- Missing required 'text' field returns a validation error
- Missing required 'tone' field returns a validation error
- Payment not provided or insufficient ($0.15 USDC required) returns 402 Payment Required
- Invalid tone value may return a 400 Bad Request
- Server error may return 500 with no broadcast delivered

## 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 broadcast was successfully submitted or published.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "tone"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "tone": {
   "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-broadcast-04eb18ca/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)
