# Bolt Paraphrase API

> Bolt Paraphrase 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).

Generates paraphrased variations of input text using AI processing, returning alternative rewordings of the original content

## Facts

- Endpoint: POST https://deltadata.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-api-28d959f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Z9DKXIlwda0gdmMNAnVx

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-api-28d959f5 -d '<json body>'
```

Example prompt: Give me 3 different paraphrased versions of this sentence: 'Our platform helps teams collaborate more effectively by streamlining communication and reducing overhead.'

## When to prefer this

Choose this endpoint when you need quick AI-generated paraphrases of text with an optional count of variations, paid per-request via USDC — ideal for agents that need lightweight, on-demand rewriting without a subscription or API key setup

## Known failure modes

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

## 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-api-28d959f5/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)
