Ir al contenido
GET /v1/meta

Service metadata and index list

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/volatilityindices-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/volatilityindices-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volatilityindices-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volatilityindices-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/volatilityindices-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "source": "Yahoo Finance CBOE volatility indices (live)",
        "indices": {
            "gvz": "GVZ — Gold",
            "ovx": "OVX — Crude Oil",
            "vix": "VIX — S&P 500",
            "vxd": "VXD — Dow Jones",
            "vxn": "VXN — Nasdaq-100",
            "vvix": "VVIX — VIX",
            "vix9d": "VIX9D — S&P 500"
        },
        "service": "volatilityindices-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/index": "One volatility index (index=vix|vxn|ovx|gvz|vvix|vix9d|vxd).",
            "GET /v1/indices": "All fear gauges + the VIX market-fear regime."
        },
        "description": "Live market fear gauges from Yahoo Finance: the VIX (S&P 500 30-day implied volatility) plus the 9-day VIX, Nasdaq-100 (VXN), Dow (VXD), crude-oil (OVX), gold (GVZ) volatility indices and the VVIX (vol-of-vol). Each with current level, day change, day and 52-week range, and a VIX-scale fear regime. Get the whole board or one index. Live, no key. Distinct from equity-index, crypto-volatility and FX-volatility APIs — this is the cross-asset implied-volatility (fear) suite.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:01.776Z",
        "request_id": "37c52e66-23e5-4a57-bd68-64f0d49b7cde"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}