# Bolt Quote Lookup

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

Retrieves a quote or pricing data from the Bolt utility toolkit, filtered by tag, count, and/or author.

## Facts

- Endpoint: POST https://boltx402.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-lookup-204b8239
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uqHRZl-iiIxmY5ky5es22

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-lookup-204b8239 -d '<json body>'
```

Example prompt: Can you fetch 3 quotes tagged 'motivation' by Marcus Aurelius using the Bolt quote endpoint?

## When to prefer this

Use this endpoint when you need to retrieve quotes from the Bolt toolkit by filtering on tag, author, or count, and you are already integrated with x402 micropayment infrastructure for per-request billing at $0.01 USDC.

## Known failure modes

- Invalid tag string returns empty or null data
- Count value of zero or negative may return no results or an error
- Author name not found returns empty data set
- Network or payment failure returns a non-200 response
- Missing required fields may cause a 400 bad request

## 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 quote or quotes matching the specified tag, author, and count criteria.

## 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-lookup-204b8239/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)
