# Bolt Paraphrase

> Bolt Paraphrase is a paid API for AI agents from bolt.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 using AI

## Facts

- Endpoint: POST https://bolt.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-d33806be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mQDqW5rPQksVWB4DU_cC7

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

Example prompt: Give me 3 paraphrased versions of this sentence: 'Our team works hard every day to deliver exceptional results for our clients.'

## When to prefer this

Choose this endpoint when you need quick AI-powered paraphrasing of text with optional multiple output variations, billed per-request in USDC. Useful for agents that need on-demand rewriting without managing a full LLM integration, especially in cost-controlled agentic workflows using the x402 payment protocol.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or empty output
- Very long text may exceed limits or increase latency
- Invalid 'variations' type (non-integer) causes schema validation failure
- Payment failure via x402 returns 402 status before processing

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