/v1/volatility
A coin realized volatility (7/30/90d) and regime
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/cryptovolatility-api/v1/volatility" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptovolatility-api/v1/volatility", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptovolatility-api/v1/volatility");
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/cryptovolatility-api/v1/volatility",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"base": "BTC",
"basis": "daily log returns, annualized over 365 days",
"price": 62843.34,
"regime": "low",
"symbol": "BTCUSDT",
"atr_14d_pct": 4.1,
"vol_30d_pct": 39.2,
"realized_vol_annualized_pct": {
"d7": 53.68,
"d30": 39.2,
"d90": 38.74
}
},
"meta": {
"timestamp": "2026-06-09T03:02:24.070Z",
"request_id": "ebca6c4c-1d5a-42a9-af21-df3285818dad"
},
"status": "ok",
"message": "Volatility retrieved successfully",
"success": true
}