# Bolt Paraphrase

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

Rewrites input text into one or more paraphrased variations while preserving the original meaning

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/paraphrase
- 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-paraphrase-4cc83656
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N25NHov8WkklfcxPpRyMu

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-paraphrase-4cc83656 -d '<json body>'
```

Example prompt: Can you paraphrase the following sentence and give me 3 different variations? 'Our innovative platform helps businesses streamline their operations and boost productivity.'

## When to prefer this

Choose this endpoint when you need a pay-per-use, agent-friendly paraphrasing tool with no subscription overhead and support for multiple output variations in a single call. Ideal for pipelines that need on-demand rephrasing with USDC micropayments via x402.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return an error or empty results
- Very long text may exceed processing limits
- Invalid type for 'variations' parameter (non-integer) causes a schema error
- Payment failure via x402 returns a 402 Payment Required response
- Server-side model unavailability may return a 5xx error

## 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 one or more paraphrased rewrites of the submitted text, with the number of variations controlled by the optional 'variations' parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "variations": {
   "type": "integer"
  }
 }
}
```

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