# Orbonomy LLM Text Rewriter

> Orbonomy LLM Text Rewriter is a paid API for AI agents from backup-v2api.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Rewrites input text in a specified tone and style using an LLM

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/llm/rewrite
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-text-rewriter-67c160e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wYf9loQYaEizFDyOIddPM

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-llm-text-rewriter-67c160e9 -d '<json body>'
```

Example prompt: Can you rewrite this paragraph in a professional tone and an academic style: 'Our product is super cool and tons of people love it — you should totally try it!'?

## When to prefer this

Choose this endpoint when you need pay-per-call LLM-powered text rewriting with tone and style control, especially in automated workflows where you want to avoid subscription overhead. It is part of the Orbonomy unified platform, useful when you are already using other Orbonomy endpoints.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Unsupported tone or style values may return an error or unexpected output
- Empty text input may result in an empty or error response
- Network timeout if the LLM backend is slow or overloaded
- Payment failure via x402 protocol if insufficient USDC balance

## 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 rewritten text; the response schema only explicitly documents the success field, so the rewritten content may be included in an undocumented field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "tone",
  "style"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "tone": {
   "type": "string"
  },
  "style": {
   "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-llm-text-rewriter-67c160e9/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)
