/v1/vrp
Variance risk premium (implied minus realised)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/dvol-api/v1/vrp" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dvol-api/v1/vrp", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dvol-api/v1/vrp");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/dvol-api/v1/vrp",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "implied_vol is the current DVOL; realized_vol is annualised stdev of daily log returns over window_days from Binance candles. variance_risk_premium = implied − realized: positive means the options market prices more vol than has been delivered (sellers earn the premium).",
"signal": "implied ≈ realised (fair)",
"source": "Deribit + Binance",
"currency": "BTC",
"implied_vol": 43.25,
"iv_rv_ratio": 1.028,
"window_days": 30,
"realized_vol": 42.09,
"variance_risk_premium": 1.16
},
"meta": {
"timestamp": "2026-06-12T01:41:11.463Z",
"request_id": "86b3bcb7-43da-4232-addc-a9db630073b8"
},
"status": "ok",
"message": "VRP retrieved successfully",
"success": true
}