# Orbonomy LLM Text Rewrite

> Orbonomy LLM Text Rewrite is a paid API for AI agents from www.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 AI language model processing

## Facts

- Endpoint: POST https://www.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-rewrite-a249a754
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qRtC8EEoSOMRsDsNqhMU-

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-rewrite-a249a754 -d '<json body>'
```

Example prompt: Rewrite the following paragraph in a professional tone and formal style: 'Hey everyone, just wanted to let you know we're gonna be doing some updates to the system next week and things might be a bit slow for a bit.'

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-subscription text rewriting service that accepts explicit tone and style parameters. Ideal for agents that need to rewrite content on-demand without managing API keys or monthly subscriptions, using x402 micropayments. Best suited for single-text rewrites where tone and style are well-defined.

## Known failure modes

- Missing required field 'text', 'tone', or 'style' returns a validation error
- Unsupported or unrecognized tone/style values may produce unexpected output
- Empty text input may result in an error or empty rewrite
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limiting or quota exhaustion may return 429 Too Many Requests
- Very long text inputs may be truncated or rejected

## 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 indicating whether the rewrite was completed; the rewritten text output is expected as part of the response payload, transformed to match the requested tone and style.

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