# Orbonomy Content Reword API

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

Rewrites and paraphrases a given text in a specified style using pay-per-call AI content transformation

## Facts

- Endpoint: POST https://backup-v2api.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-7bb0d027
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KFNhfFiOltMqeINoek_vh

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

Example prompt: Can you reword this paragraph in a formal style: 'Hey everyone! We're super excited to share our new product with you all — it's gonna change the game and we can't wait for you to try it out!'

## When to prefer this

Use this endpoint when you need to quickly transform existing text into a different writing style or tone without building your own language model pipeline, and you prefer a pay-per-call model rather than a subscription. Particularly useful for content pipelines needing style normalization.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'style' field returns validation error
- Unrecognized or ambiguous style value may produce unexpected output
- Empty text input may return error or empty result
- Payment failure via x402 protocol blocks the call
- Rate limiting or server 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

Returns a JSON object with a success boolean and presumably 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-7bb0d027/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
