# Orbonomy Content Broadcast

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

Broadcasts or publishes text content with a specified tone via a pay-per-call API endpoint

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/content/broadcast
- 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-broadcast-002eb613
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wg6NpRXNhEuzD-zCDTyNd

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

Example prompt: Broadcast this message using a professional tone: 'We are excited to announce the launch of our new product line, available starting today.'

## When to prefer this

Use this endpoint when you need to programmatically broadcast or publish text content with a specific tone style, and want a pay-per-call model via the x402 protocol without subscription overhead. Best suited for automation workflows that trigger content publishing on demand.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'tone' field returns validation error
- Invalid or unsupported tone value may cause rejection
- Payment failure via x402 protocol results in 402 response
- Empty text string may be rejected
- Server error returns non-success response

## 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-002eb613/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)
