# Bolt Text Rewrite

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

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

## Facts

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

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

Example prompt: Can you rewrite the following paragraph in a professional tone and a concise style: 'Hey, just wanted to check in and see if you got my last email, kinda been waiting to hear back and it would be super helpful to know where things stand'?

## When to prefer this

Use this endpoint when you need lightweight, pay-per-request AI text rewriting without a subscription, especially in agentic pipelines that require dynamic tone or style control over arbitrary input text

## Known failure modes

- Missing required 'text' field returns validation error
- Unsupported or unrecognized tone/style values may produce unexpected output or error
- Empty text string may return an error or empty result
- Payment failure via x402 prevents request processing
- Server-side AI processing failure may return success:false with no data

## 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 rewritten version of the input text transformed according to the specified tone and style

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