/v1/index
One volatility index
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/volatilityindices-api/v1/index" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volatilityindices-api/v1/index", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volatilityindices-api/v1/index");
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/index",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"name": "VIX",
"as_of": "2026-06-08T20:15:01.000Z",
"index": "vix",
"level": 18.92,
"change": -2.59,
"regime": "normal",
"symbol": "^VIX",
"day_low": 17.94,
"day_high": 20.35,
"change_pct": -12.04,
"week52_low": 13.38,
"asset_class": "S&P 500",
"description": "30-day implied volatility of the S&P 500 — the market's headline fear index.",
"week52_high": 35.3,
"previous_close": 21.51
},
"meta": {
"timestamp": "2026-06-09T03:02:01.698Z",
"request_id": "ea436a9d-e50f-4aa6-a368-6fcb670bb6a8"
},
"status": "ok",
"message": "Index retrieved successfully",
"success": true
}