# Bolt Explain Endpoint

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

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

## Facts

- Endpoint: POST https://deltadata.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-endpoint-ae47830d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OJgejPHq-KYfb6tX2Kqxl

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

Example prompt: Explain this paragraph to a general audience at a basic depth: 'Quantum entanglement is a phenomenon where two particles become correlated such that the quantum state of each particle cannot be described independently of the others, even when separated by large distances.'

## When to prefer this

Choose this endpoint when you need to transform dense, technical, or complex text into an audience-appropriate explanation, especially when you want to control the depth and target audience of the explanation. Useful for agents that need to make content accessible to non-experts or tailor communication to specific user profiles.

## Known failure modes

- Missing required 'text' field returns a validation error
- Overly long or malformed text may result in processing failure
- Invalid 'depth' or 'audience' values may be ignored or cause errors
- Payment failure via x402 returns 402 Payment Required before processing
- Server-side AI processing errors return success:false with error details

## 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 AI-generated explanation of the input text, tailored to the specified 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-endpoint-ae47830d/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)
