# Bolt Explain

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

Takes a text input and returns a plain-language explanation of it, with optional depth and audience tuning

## Facts

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

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

Example prompt: Can you explain this paragraph about quantum entanglement to me as if I'm a high school student? Depth should be introductory: 'Quantum entanglement occurs when two particles become linked such that the state of one instantly influences the state of the other, regardless of distance.'

## When to prefer this

Use this endpoint when you need to generate a plain-language explanation of a piece of text, especially when you want to control the complexity level (depth) or target a specific audience type. It's ideal for breaking down technical jargon, complex documents, or dense passages for a given reader profile.

## Known failure modes

- Missing required 'text' field returns a validation error
- Very long or unsupported text may cause processing failure
- Invalid depth or audience values may be ignored or cause errors
- Payment failure via x402 results in 402 response before processing begins

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON response with a success boolean and a data object containing the generated explanation of the input text, tailored to the requested depth and audience.

## 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-8b9f1b40/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)
