# Orbonomy Content Reword API

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

Rewrites or paraphrases a given text in a specified style using AI-powered rewriting

## Facts

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

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

Example prompt: Can you reword this paragraph for me in a casual style: 'The quarterly financial results demonstrated a significant upward trajectory in net revenue, attributable to expanded market penetration and operational efficiencies achieved during the fiscal period.'

## When to prefer this

Choose this endpoint when you need to quickly reword or paraphrase text in a specific style as a pay-per-call API without a subscription commitment. Useful for agents handling one-off content transformation tasks where tone or style adjustment is needed, and when integration with x402 micropayment protocol is already in place.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'style' field returns validation error
- Unsupported or unrecognized style value may result in fallback or error
- Payment failure via x402 protocol returns 402 Payment Required
- Empty or excessively long text may be rejected
- Server-side AI generation failure may return success: false

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and presumably the reworded text output in the specified style, though the response schema only explicitly documents the success flag.

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