# Bolt Text Rewrite API

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

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

## Facts

- Endpoint: POST https://deltadata.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-api-74e8ecb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fLKS-tAEGMbeAIk0Asb0w

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-api-74e8ecb8 -d '<json body>'
```

Example prompt: Can you rewrite the following text in a professional tone and formal style: 'Hey, just wanted to check in and see if you got my last email — let me know when you're free to chat!'

## When to prefer this

Use this endpoint when you need to quickly rewrite or paraphrase a block of text with explicit tone and style control, especially in agentic pipelines that require per-request USDC micropayment billing via x402. Prefer this over general LLM prompting when you want a dedicated, consistent rewrite API without managing your own prompt engineering.

## Known failure modes

- Missing required 'text' field returns validation error
- Unsupported tone or style values may produce unexpected output
- Payment failure via x402 returns 402 status before processing
- Very long text may time out or be truncated
- Empty text string may return error or no-op result

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