# Orbonomy Shift Tone

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

Rewrites a given piece of text in a specified tone while preserving the original meaning

## Facts

- Endpoint: POST https://backup-v2api.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-184f87e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_diOL_LBssWunjKrxg8zD8

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-184f87e3 -d '<json body>'
```

Example prompt: Can you rewrite this email in a friendly and casual tone: 'Dear Mr. Johnson, I am writing to inform you that your application has been received and is currently under review. We will be in contact shortly.'

## When to prefer this

Use this endpoint when you need to adapt existing text to a different emotional register or style — such as making formal content more casual, cold content warmer, or bland copy more persuasive — without rewriting it from scratch. Best suited for single-document tone transformations via a pay-per-call model.

## 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
- Empty string inputs may fail or return unchanged content
- Payment failure via x402 protocol returns 402 before processing
- Service timeout on very long text inputs

## 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 flag and presumably the tone-shifted version of the submitted text, rewritten to match the requested tone while maintaining the original meaning.

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