Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/cryptovolatility-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/cryptovolatility-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptovolatility-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptovolatility-api/v1/meta");
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/meta",
    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": {
        "source": "Binance public klines (live)",
        "service": "cryptovolatility-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/compare": "Rank majors by realized volatility (window=30, add=PEPE,WIF to extend).",
            "GET /v1/symbols": "The majors covered by compare (any USDT pair works in /v1/volatility).",
            "GET /v1/volatility": "A coin's realized volatility (symbol=BTC): 7/30/90-day annualized vol, ATR%, regime."
        },
        "description": "Live crypto realized (historical) volatility from Binance daily candles: for any coin, the annualized realized volatility over 7/30/90-day windows (std-dev of daily log returns, annualized over 365 days), the ATR as a percent of price, the current price and a regime label (low/normal/high/extreme). Also ranks a basket of majors by 30-day volatility. Live, no key. Distinct from price, OHLC and drawdown APIs — this is the realized-volatility analytic.",
        "windows_days": [
            7,
            30,
            90
        ],
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:24.949Z",
        "request_id": "bc50f7aa-2012-44b5-a909-1d35992fac99"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}