# Orbonomy LLM Text Rewriter

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

Rewrites a given text in a specified tone and style using an AI language model

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/llm/rewrite
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-text-rewriter-9489202b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pH5RdbZhctJhA-xEPTm9y

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-9489202b -d '<json body>'
```

Example prompt: Can you rewrite this paragraph in a professional tone and a formal style: 'Hey, just wanted to check in about that project thing we talked about. Let me know what's up when you get a chance.'

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-subscription AI text rewriter that accepts explicit tone and style parameters. Ideal for agents that need lightweight, on-demand text transformation without setting up a full LLM integration, and when paying per call via x402/USDC is acceptable or preferred over API key-based billing.

## Known failure modes

- Missing required fields (text, tone, or style) returns a validation error
- Payment not received or insufficient USDC balance causes a 402 Payment Required response
- Unsupported tone or style value may result in an error or unexpected output
- Very long input text may exceed token limits and cause a failure
- Service downtime or upstream LLM unavailability returns a 5xx error

## 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 succeeded; the rewritten text is presumably included in the response body under the success flag.

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