# Bolt Explain

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

Generates a plain-language explanation of a given text at a specified depth and for a target audience

## Facts

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

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

Example prompt: Can you explain this paragraph to me in simple terms for a general audience, going into moderate depth: 'Transformer models use self-attention mechanisms to weigh the relevance of each token relative to all others in the input sequence, enabling parallelized training over long-range dependencies.'

## When to prefer this

Use this endpoint when you need to programmatically generate plain-language explanations of complex or technical text, especially when audience tailoring and depth control are important. Prefer this over generic LLM prompts when you want a pay-per-use, no-subscription API call within an agentic workflow that supports x402 micropayments.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Text too long may cause timeout or truncation
- Invalid depth or audience values may produce generic output or an error
- Payment failure via x402 returns a 402 Payment Required response
- Service unavailability returns 503

## 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 of the provided 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-0725114b/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)
