# Orbonomy Content Tone Shifter

> Orbonomy Content Tone Shifter is a paid API for AI agents from 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 core meaning

## Facts

- Endpoint: POST https://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-content-tone-shifter-9d99e86e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HN-l9d3rIQZnwQVQJN_V0

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-tone-shifter-9d99e86e -d '<json body>'
```

Example prompt: Can you rewrite this paragraph in a professional tone? Here's the text: 'Hey! So we kinda messed up your order, sorry about that. We'll fix it ASAP, promise!'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call API to rephrase content in a specific tone without managing a full LLM integration; ideal for pipelines that need tone adjustment as a discrete, composable step with predictable per-call pricing

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'tone' field returns validation error
- Unsupported or unrecognized tone value may produce generic or unexpected output
- Very long text inputs may be truncated or rejected
- Payment failure via x402 protocol results in 402 response before processing begins
- Empty string inputs may return success:false or an error 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, on success, the tone-shifted version of the input text rewritten in the requested tone style

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