# Orbonomy Content Reword API

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

Rewrites a given text in a specified style using AI-powered paraphrasing

## Facts

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

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

Example prompt: Can you reword this paragraph in a casual style: 'The quarterly financial results exceeded market expectations, demonstrating robust performance across all business units.'

## When to prefer this

Choose this endpoint when you need to transform text into a specific style or tone on a pay-per-call basis without a subscription. Ideal for agents that need occasional text rewriting with flexible style control via the x402 micropayment protocol.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'style' field returns validation error
- Payment of 0.1 USDC not provided results in 402 Payment Required
- Unrecognized style value may produce unexpected output or error
- Empty text input may return success:false or empty result
- Network timeout if text is very long

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