# Synergy Text Rewriter

> Synergy Text Rewriter is a paid API for AI agents from api.exo-trust.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Rewrites input text to a specified tone or format (e.g., professional, concise, plain-language) while preserving the original meaning.

## Facts

- Endpoint: POST https://api.exo-trust.com/execute/rewrite
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synergy-text-rewriter-34573f94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NK32vYlIx85P-NbwUBBFC

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 synergy-text-rewriter-34573f94 -d '<json body>'
```

Example prompt: Rewrite the following email in a professional tone, keeping it under 150 words: 'Hey, just wanted to check in again about the invoice — we still haven't heard back and it's been like two weeks. Can you guys sort this out?'

## When to prefer this

Choose this endpoint when you need to change the tone, formality, or style of existing text without altering its meaning — for example, converting casual emails to professional ones, simplifying technical jargon, or making verbose content more concise. Prefer this over a summarization endpoint when the goal is style transformation rather than length reduction or information extraction. It is also preferable over a general-purpose LLM call when you want a cost-predictable, purpose-built rewriting service with a fixed per-call price.

## Known failure modes

- Empty or missing 'text' field returns a 400 validation error
- Invalid or unrecognized 'style' value may produce inconsistent or generic output
- 'max_words' set too low may result in truncated or incoherent output
- Payment not included or insufficient USDC triggers a 402 Payment Required response
- Very long input text may hit token limits and return a partial or error response

## How this service works

Rewrite text to a requested tone or format (professional, concise, plain-language) without changing meaning.

## Output

The endpoint returns the input text rewritten in the requested style or tone, preserving the original meaning. The response includes the transformed text, optionally constrained to a maximum word count as specified by the caller.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  },
  "style": {
   "type": "string"
  },
  "max_words": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "changes": [
    "example"
   ],
   "word_count": 1,
   "rewritten_text": "example"
  },
  "status": "completed",
  "receipt": {
   "amount": 0.05,
   "method": "x402",
   "settled": true,
   "currency": "USDC"
  },
  "task_id": "00000000-0000-0000-0000-000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synergy-text-rewriter-34573f94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.exo-trust.com](https://www.zero.xyz/host/api.exo-trust.com/llms.txt)
