# Bolt Crypto Price Lookup

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

Fetches the current price of a cryptocurrency in a specified fiat or crypto currency via the Bolt agent toolkit

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/crypto
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-crypto-price-lookup-9eb468ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G_IwESGghK2jqVv8oTklc

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-crypto-price-lookup-9eb468ec -d '<json body>'
```

Example prompt: What's the current price of Bitcoin in USD? Use the Bolt crypto endpoint to look it up.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-request cryptocurrency price lookup without managing API keys or subscriptions. Ideal for AI agents that need real-time coin prices on demand and can pay micro-amounts in USDC via the x402 protocol.

## Known failure modes

- Invalid or unsupported coin identifier returns an error or empty data
- Unsupported vs_currency value may result in failure or missing data
- Payment not completed via x402 results in 402 Payment Required response
- Network timeout or upstream data source unavailability returns a server error
- Malformed request body missing required fields returns a validation 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 JSON object with a 'success' boolean and a 'data' object containing the current price of the specified coin in the requested vs_currency, sourced from market data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "coin": {
   "type": "string"
  },
  "vs_currency": {
   "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-crypto-price-lookup-9eb468ec/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)
