# Bolt Paraphrase

> Bolt Paraphrase 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 input text into one or more paraphrased variations while preserving the original meaning

## Facts

- Endpoint: POST https://datault.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-711ec275
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QGpgfLpQGKx32NDSvk_89

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

Example prompt: Can you give me 3 paraphrased versions of this sentence: 'Our product helps businesses grow by streamlining their operations and reducing overhead costs'?

## When to prefer this

Use this endpoint when you need quick, pay-per-use text paraphrasing with a configurable number of output variations and no subscription commitment; suitable for agents that need on-demand rephrasing as part of content generation or deduplication workflows

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return an error or empty result
- Very long text may be truncated or rejected
- Invalid type for 'variations' (non-integer) causes schema validation failure
- Payment failure (402) if USDC balance is insufficient

## 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 paraphrased variation(s) of the input text

## 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-711ec275/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)
