# Deribit DVOL Implied Volatility Index Signal

> Deribit DVOL Implied Volatility Index Signal is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the Deribit DVOL 30-day annualized implied volatility index for BTC or ETH, including current level, 24-hour change, and statistical context (min, max, percentile) over a configurable lookback window.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/vol/dvol
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deribit-dvol-implied-volatility-index-signal-9baa29ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3-jVlS_ZK2e7F4GOD4DRz

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 deribit-dvol-implied-volatility-index-signal-9baa29ae
```

Example prompt: What's the current Deribit DVOL implied volatility for BTC right now, and how does it compare to the last 30 days — is it near a high or low percentile?

## When to prefer this

Use this endpoint when you need a standardized, contextualized implied volatility risk signal for BTC or ETH specifically from the Deribit options order book — the most liquid crypto derivatives venue. Prefer this over raw price feeds when you need options-market-derived fear/uncertainty metrics with historical percentile context. Best for risk dashboards, trading signals, and portfolio volatility assessment.

## Known failure modes

- Invalid asset value (not BTC or ETH) returns a 400 or validation error
- Invalid window value (not 7d, 30d, or 90d) returns a 400 or validation error
- Deribit upstream unavailable causes a 502 or 503 error
- Payment not provided or rejected returns a 402 Payment Required
- Stale cache data if Deribit candle feed is delayed

## How this service works

Deribit DVOL index (30-day annualized implied volatility from the options order book) for BTC or ETH, delivered as a risk signal: current level, 24h change, and min/max/percentile over a lookback window. Query: ?asset=BTC|ETH&window=7d|30d|90d (defaults BTC, 30d). JSON, 5min cache. Derived from Deribit public volatility-index candles.

## Output

A JSON object containing the current DVOL index value (30-day annualized implied volatility), the 24-hour change, and over the selected lookback window: the minimum value, maximum value, and current percentile rank. Data is cached for 5 minutes and derived from Deribit public volatility-index candles.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset": {
       "enum": [
        "BTC",
        "ETH"
       ],
       "type": "string",
       "default": "BTC",
       "description": "Underlying asset"
      },
      "window": {
       "enum": [
        "7d",
        "30d",
        "90d"
       ],
       "type": "string",
       "default": "30d",
       "description": "Lookback window for percentile and range"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deribit-dvol-implied-volatility-index-signal-9baa29ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
