# Bolt Crypto Price Lookup

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

Fetches cryptocurrency price data for a specified coin against a target currency

## Facts

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

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

Example prompt: What is the current price of Bitcoin in USD?

## When to prefer this

Use this endpoint when you need a quick, pay-per-request crypto price lookup without managing API keys or subscriptions. Particularly suitable for AI agents that need on-demand cryptocurrency pricing integrated into automated workflows with USDC micropayments via x402.

## Known failure modes

- Unsupported coin symbol returns an error or empty data
- Unsupported vs_currency returns failure
- Missing required fields (coin or vs_currency) may result in a 400 or failed response
- Upstream price data source unavailable causes failure
- Payment not completed via x402 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 JSON object with a `data` field containing the coin's market price and related data in the requested vs_currency, plus a `success` boolean indicating whether the request succeeded.

## 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-b75f70c1/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)
