# Bolt Crypto Price Lookup

> Bolt Crypto Price Lookup is a paid API for AI agents from datault.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

## Facts

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

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

Example prompt: What's the current price of Bitcoin in USD? Use the Bolt crypto endpoint to look it up — coin is 'bitcoin' and vs_currency is 'usd'.

## When to prefer this

Use this endpoint when you need a quick, pay-per-request crypto price lookup without setting up a full exchange or market data API subscription. Useful for agents that occasionally need to check a coin's price in a specific currency without managing API keys.

## Known failure modes

- Invalid coin identifier returns an error or empty data
- Unsupported vs_currency results in a failed lookup
- Network timeout from the upstream data provider
- Malformed request body returns a 400-level error
- Payment failure via x402 prevents the request from being processed

## 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 price of the requested coin in the specified vs_currency.

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