/v1/volatility
A coin realized volatility (7/30/90d) and regime
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}