# Orbonomy Content Reword API

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

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

## Facts

- Endpoint: POST https://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-44e125cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Uvy53Ps5nFQVyE-6UcBc

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

Example prompt: Can you reword this paragraph in a formal style: 'Our team worked super hard last quarter and smashed all our targets, which was pretty awesome for everyone involved.'

## When to prefer this

Choose this endpoint when you need pay-per-call text rewriting without a subscription, especially when integrating into automated pipelines that occasionally need style transformations. Useful when you want a simple API call to rephrase content in a specific tone or voice without managing your own LLM infrastructure.

## Known failure modes

- Missing required 'text' field returns 400 error
- Missing required 'style' field returns 400 error
- Unsupported or unrecognized style value may produce unexpected output
- Payment failure via x402 protocol returns 402 Payment Required
- Empty text input may return error or empty result
- Server overload may cause timeout for very long texts

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