# QuantOracle Live Volatility

> QuantOracle Live Volatility is a paid API for AI agents from api.quantoracle.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time volatility metrics for a given crypto asset (USD pair) such as BTC, ETH, or SOL

## Facts

- Endpoint: POST https://api.quantoracle.dev/v1/live/volatility
- 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/quantoracle-live-volatility-b6be10e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OP-be03NkdcTQeOPCD3Hg

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 quantoracle-live-volatility-b6be10e2 -d '<json body>'
```

Example prompt: What's the live volatility for ETH right now? I need the current real-time number for the ETH/USD pair.

## When to prefer this

Choose this endpoint when you need real-time, live volatility figures for a specific crypto asset (BTC, ETH, SOL, etc.) and want a quantitative, model-driven measure rather than a derived or historical metric. Particularly useful in trading, risk management, or dynamic position-sizing workflows where up-to-the-minute volatility is critical.

## Known failure modes

- Unknown or unsupported asset symbol returns an error or empty response
- Missing 'asset' field in request body causes a validation error
- Service unavailable or market data feed interruption may return a 5xx error
- Rate limiting or payment failure (x402) may block the request

## How this service works

QuantOracle: live/volatility

## Output

A JSON object containing live volatility data for the requested crypto asset's USD pair, reflecting current market conditions as computed by QuantOracle's models.

## Example request

```json
{
 "asset": "BTC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "title": "Asset",
   "default": "BTC",
   "description": "Crypto asset symbol, e.g. BTC, ETH, SOL (USD pair)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quantoracle-live-volatility-b6be10e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.quantoracle.dev](https://www.zero.xyz/host/api.quantoracle.dev/llms.txt)
