# Bolt Explain

> Bolt Explain is a paid API for AI agents from v0-bolt.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Explains a given text in plain language, with configurable depth and audience targeting

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/explain
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-explain-bfa10f5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4MZK1nRrxDGOz7Z4L-bKO

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

Example prompt: Can you explain the following text to me in simple terms for a general audience, with a basic depth level: 'Quantum entanglement is a phenomenon where two particles become correlated such that the quantum state of each cannot be described independently of the other, even when separated by large distances.'

## When to prefer this

Use this endpoint when you need to explain or simplify a piece of text for a specific audience or depth, especially within an agent workflow that already uses the Bolt utility toolkit on orbonomy.xyz. Prefer this over general LLM calls when you need a pay-per-use, structured API response with consistent formatting.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string for text may return an empty or error response
- Unsupported depth or audience values may produce unexpected output
- Service unavailable returns HTTP 402 if payment is not provided
- Overly long text may be truncated or refused

## 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 generated explanation tailored to the specified audience and depth level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "depth": {
   "type": "string"
  },
  "audience": {
   "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-explain-bfa10f5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
