Volatility index
SQL API
public_data.volatility_index
public_data.volatility_indexColumns
Column
Type
Description
Example Queries
1. Latest BTC and ETH DVOL
SELECT
timestamp,
market,
close
FROM public_data.volatility_index
WHERE exchange = 'deribit'
AND market IN ('BTC', 'ETH')
AND timestamp >= now() - INTERVAL 24 HOUR
ORDER BY timestamp DESC, market ASC
LIMIT 502. 1-hour resampled DVOL
3. Variance risk premium (DVOL forecast vs forward-realised)
Output (rolling 365 days, BTC)
metric
value
Notes
REST API
Authorizations
x-api-keystringRequired
Required for /ohlcv and /trade endpoints. Pass your API key in the x-api-key header. Public /market/* endpoints do not require authentication.
Query parameters
exchangestringRequired
Exchange that publishes the index (e.g. deribit).
marketstringRequired
Underlying asset (e.g. BTC, ETH).
start_datetimestring · date-timeRequiredExample:
Window start. Accepts any format parseable by parseDateTime64BestEffort
— e.g. a plain date (2026-03-01, treated as midnight UTC) or a full
ISO 8601 timestamp (2026-03-01T12:00:00Z).
2026-03-01end_datetimestring · date-timeRequiredExample:
Window end. Same format as start_datetime.
2026-03-08Responses
200
OK
application/json
timestring · date-timeOptional
Bar timestamp (UTC)
exchangestringOptional
Exchange that publishes the index
marketstringOptional
Underlying asset
opennumber · decimalOptional
Open value of the index for the bar
highnumber · decimalOptional
High value
lownumber · decimalOptional
Low value
closenumber · decimalOptional
Close value
get
/volatility-index200
OK
Last updated
Was this helpful?