# Orbonomy Content Reword

> Orbonomy Content Reword is a paid API for AI agents from api.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://api.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-cd37d581
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_70qN55Lxg1G5yRWacbO9g

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

Example prompt: Can you reword this paragraph in a formal style: 'Hey there! We're super excited to let you know that your order is on its way and should arrive pretty soon!'

## When to prefer this

Choose this endpoint when you need to transform existing text into a different tone or style without changing the core meaning — ideal for adapting content for different audiences, polishing drafts, or standardizing writing style across documents. Prefer this over a full content-generation endpoint when the source text already exists and only needs stylistic adjustment.

## Known failure modes

- Missing required field 'text' returns validation error
- Missing required field 'style' returns validation error
- Unsupported or unrecognized style value may produce unexpected output
- Payment of 0.1 USDC not fulfilled via x402 protocol results in 402 Payment Required
- Text input too long may exceed processing limits
- Service unavailability returns 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 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-cd37d581/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)
