ETH Volatility Risk Premium — DVOL minus Parkinson realized vol (72h)
ETH Volatility Risk Premium — DVOL minus Parkinson realized vol (72h). Positive = sell-vol opportunity, negative = buy-vol. Response includes regime classification (LOW/MID/HIGH), raw inputs for audit (DVOL, RV_72h, RV_6h, spot), timestamp, and open methodology URL.
1000 (raw units)
price
10
calls / 30d
8
unique payers
2026-09-16
updated
Provider
regimeshift.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x82B17D0bb4De9ae6c3491257B60E8245e70acd7B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"example": {
"asset": "ETH",
"cache_ttl_sec": 60,
"computed_at": 1779284275,
"inputs": {
"dvol": 52.58,
"rv_6h": 40.204,
"rv_72h": 52.4275,
"source": "Deribit public API (DVOL + ETH-PERPETUAL OHLC)",
"spot_usd": 2130.2,
"timestamp": "2026-05-20T14:00:00+00:00"
},
"methodology": "https://regimeshift.xyz/methodology/vrp-v1",
"ok": true,
"quiet": true,
"regime": "MID",
"vrp": 0.1525
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"asset": {
"enum": [
"ETH",
"BTC"
],
"type": "string"
},
"cache_ttl_sec": {
"type": "integer"
},
"computed_at": {
"description": "Unix timestamp",
"type": "integer"
},
"inputs": {
"properties": {
"dvol": {
"description": "Deribit volatility index, annualized %",
"type": "number"
},
"rv_6h": {
"description": "Parkinson realized vol over 6h, %",
"type": "number"
},
"rv_72h": {
"description": "Parkinson realized vol over 72h, %",
"type": "number"
},
"source": {
"type": "string"
},
"spot_usd": {
"type": "number"
},
"timestamp": {
"format": "date-time",
"type": "string"
}
},
"required": [
"dvol",
"rv_72h",
"spot_usd",
"timestamp"
],
"type": "object"
},
"methodology": {
"format": "uri",
"type": "string"
},
"ok": {
"description": "Request status",
"type": "boolean"
},
"quiet": {
"description": "true if RV_72h < 60%",
"type": "boolean"
},
"regime": {
"enum": [
"LOW",
"MID",
"HIGH"
],
"type": "string"
},
"vrp": {
"description": "DVOL − Parkinson RV(72h), in vol points. Positive = sell-vol opportunity",
"type": "number"
}
},
"required": [
"ok",
"asset",
"vrp",
"regime",
"inputs"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://regimeshift.xyz/api/v1/asset/eth/vrp" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://regimeshift.xyz/api/v1/asset/eth/vrp");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://regimeshift.xyz/api/v1/asset/eth/vrp")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2955.json, and this resource appears in /discovery/resources and /discovery/search.