# Orbonomy Content Reword API

> Orbonomy Content Reword API is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Rewrites or paraphrases a given piece of text in a specified style using AI

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/content/reword
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-reword-api-dc217ed6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vAXCkor7uYDf0DE6wozja

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-reword-api-dc217ed6 -d '<json body>'
```

Example prompt: Can you reword this paragraph for me in a casual style: 'Our quarterly earnings exceeded projections, demonstrating robust financial health and sustainable growth trajectories across all divisions.'

## When to prefer this

Choose this endpoint when you need to quickly reword or paraphrase a piece of text into a specific tone or style without setting up a large LLM pipeline; ideal for pay-per-call, low-overhead content transformation tasks where you want a specific stylistic output without managing your own AI infrastructure

## Known failure modes

- Missing required 'text' field returns 400 validation error
- Missing required 'style' field returns 400 validation error
- Unsupported or unrecognized style value may return error or unexpected output
- Payment failure via x402 protocol returns 402 Payment Required
- Empty text input may return error or empty result
- Rate limiting may occur under high load returning 429

## 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 and the reworded version of the input text transformed into the requested style

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "style"
 ],
 "properties": {
  "text": {
   "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-content-reword-api-dc217ed6/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)
