# Bolt Text Rewrite

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

Rewrites a given text with an optional tone and style using AI, returning the transformed content

## Facts

- Endpoint: POST https://v0-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-rewrite-fba23137
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SfWAzAll78vByDnRU1urM

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

Example prompt: Rewrite the following paragraph in a professional and persuasive tone: 'We made a mistake on your order and we're really sorry about it. We want to fix things and make sure you're happy.'

## When to prefer this

Use this endpoint when you need on-demand, pay-per-call AI text rewriting with tone and style control, especially in agentic pipelines that require lightweight, predictable USDC billing via x402 without managing an LLM API key directly.

## Known failure modes

- Missing required 'text' field returns validation error
- Invalid or unsupported tone/style values may produce unexpected output
- Very long text inputs may exceed processing limits
- Payment failure (402) if USDC balance is insufficient
- Network timeout on slow inference

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing the AI-rewritten version of the input text, transformed according to the specified tone and style preferences.

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