# Bolt Quote Endpoint

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

Retrieves a quote or set of quotes filtered by tag, author, or count from the Bolt utility toolkit

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/quote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-quote-endpoint-3390dbc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LRJMvKeg-BqCWOfhfxbWd

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-quote-endpoint-3390dbc5 -d '<json body>'
```

Example prompt: Fetch me 3 quotes tagged 'stoicism' by Marcus Aurelius from the Bolt quote tool.

## When to prefer this

Choose this endpoint when you need to retrieve quotes filterable by tag, author, or quantity via a pay-per-request micropayment model using USDC. Prefer it over free APIs when operating within an x402-enabled agent workflow that handles USDC payments automatically.

## Known failure modes

- Invalid or unrecognized tag returns empty data or error
- Author name not found returns empty result set
- Count value of zero or negative integer may cause validation error
- Missing all optional fields may return a default or random result
- Network or payment failure returns HTTP 402 or 5xx error

## 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 data object containing the requested quotes (filtered by tag, author, and/or count) along with a boolean success flag indicating whether the request completed successfully.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tag": {
   "type": "string"
  },
  "count": {
   "type": "integer"
  },
  "author": {
   "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-quote-endpoint-3390dbc5/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)
