# Orbonomy LLM Text Rewrite

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

Rewrites a given text in a specified tone and style using an LLM.

## Facts

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

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

Example prompt: Rewrite the following text in a persuasive tone and a formal style: 'Our product helps teams work faster and avoid bottlenecks by automating repetitive tasks.'

## When to prefer this

Choose this endpoint when you need to programmatically transform existing text into a specific tone and style combination via a pay-per-call API, especially when integrating with x402-compatible payment flows. Useful when you want lightweight, on-demand text rewriting without managing your own LLM infrastructure.

## Known failure modes

- Missing required fields (text, tone, or style) returns a 400 error
- Invalid or unsupported tone/style values may produce poor results or errors
- Payment failure via x402 protocol prevents execution
- Text too long may exceed LLM context limits
- Network timeout or API 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

A JSON object with a success boolean indicating whether the rewrite completed. The rewritten text is presumably included in the response body, though the documented schema only explicitly lists the success 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-rewrite-b83c3895/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
