# Orbonomy Shift Tone API

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

Rewrites a given text in a specified tone (e.g. formal, casual, persuasive) while preserving its core meaning

## Facts

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

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-api-5ff28b06 -d '<json body>'
```

Example prompt: Can you rewrite the following paragraph in a formal tone? 'Hey, just wanted to check in and see if you had a chance to look at the proposal we sent over last week — totally understand if you've been busy!'

## When to prefer this

Use this endpoint when you need a fast, pay-per-call tone transformation for arbitrary text and want to avoid setting up a full LLM pipeline yourself. Ideal for workflows requiring automated copy adaptation across different audiences or communication styles.

## Known failure modes

- Missing required 'text' or 'tone' fields returns a validation error
- Unsupported or unrecognized tone values may produce unexpected output or an error
- Very long input text may hit length limits
- Payment failure via x402 protocol returns HTTP 402 before processing

## 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 the rewritten text transformed into the requested tone, preserving the original meaning while adjusting stylistic register and voice.

## 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-api-5ff28b06/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)
