# Bolt Text Rewriter

> Bolt Text Rewriter is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Rewrites input text with a specified tone and style using AI processing

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/rewrite
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-text-rewriter-d3658ed3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_df_pqUbSgfG_UlHDliE2a

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 bolt-text-rewriter-d3658ed3 -d '<json body>'
```

Example prompt: Rewrite the following text in a professional and concise style: 'Hey so basically we totally crushed it this quarter, sales went up like crazy and everyone's super pumped about it.'

## When to prefer this

Choose this endpoint when you need AI-powered text rewriting with explicit control over tone and style, and want to pay per request in USDC without a subscription. Ideal for agents that need on-demand, pay-as-you-go text transformation without managing API keys or monthly plans.

## Known failure modes

- Missing required 'text' field returns an error response with success: false
- Invalid or unsupported tone/style values may produce unexpected rewrites or errors
- Empty string input may return an error or empty rewrite
- Payment failure via x402 returns 402 status before processing begins
- Very long text inputs may exceed processing limits or increase latency

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON object containing a success boolean and a data object with the rewritten version of the input text, transformed according to the specified tone and style parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "tone": {
   "type": "string"
  },
  "style": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-text-rewriter-d3658ed3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
