# Bolt Quote Endpoint

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

Fetches a quote for content or data items filtered by tag, author, and count via the Bolt AI agent utility toolkit

## Facts

- Endpoint: POST https://v0-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-c758aa86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PdvHvzuEGaIwJYIUJMr5N

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

Example prompt: Can you fetch me 5 quotes tagged 'motivation' by author 'Marcus Aurelius' from Bolt?

## When to prefer this

Use this endpoint when you need to retrieve quotes filtered by tag and/or author from the Bolt utility toolkit, especially when paying per request via x402 USDC micropayments and needing a lightweight, fast lookup.

## Known failure modes

- Invalid or unrecognized tag returns empty data object with success false
- Author name not found returns no results
- Count value of zero or negative may cause validation error
- Missing required fields may return a 400 bad request
- Payment not provided or insufficient USDC results in 402 Payment Required

## 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 matching quote or quotes along with a boolean success flag indicating whether the request was fulfilled.

## 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-c758aa86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
