/v1/volatility
A coin realized volatility (7/30/90d) and regime
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}