Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cryptovolatility-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}