# Orbonomy Shift Tone

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

Rewrites a piece of text in a specified tone while preserving its core meaning

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/content/shift-tone
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-shift-tone-d05ec3d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OiBaBFdGBUZpIbazhQtBZ

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-shift-tone-d05ec3d3 -d '<json body>'
```

Example prompt: Can you rewrite this customer email in a more empathetic, friendly tone? 'We cannot process your request at this time due to policy constraints.'

## When to prefer this

Use this endpoint when you need to quickly rewrite text in a different emotional or stylistic register without changing the underlying message — especially in automated content pipelines, customer communication workflows, or when adapting content for different audiences. Prefer this over a general LLM call when you want a pay-per-use, no-subscription approach via the x402 micropayment protocol.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'tone' field returns validation error
- Unrecognized or unsupported tone value may return an error or unexpected output
- Payment failure via x402 protocol results in 402 Payment Required
- Empty text string may return an error or empty result
- Server-side AI model errors may return a 500 or partial 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 success boolean and presumably the tone-shifted version of the input text in the response body

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