Zum Inhalt springen
GET /v1/indices

All fear gauges + the VIX market-fear regime

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/volatilityindices-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "as_of": "2026-06-08T20:15:01.000Z",
        "count": 7,
        "indices": [
            {
                "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
            },
            {
                "name": "VIX9D",
                "as_of": "2026-06-08T20:15:02.000Z",
                "index": "vix9d",
                "level": 19.69,
                "change": -4.23,
                "regime": "normal",
                "symbol": "^VIX9D",
                "day_low": 17.83,
                "day_high": 20.42,
                "change_pct": -17.68,
                "week52_low": 13.33,
                "asset_class": "S&P 500",
                "description": "9-day implied volatility — short-term fear.",
                "week52_high": 41.52,
                "previous_close": 23.92
            },
            {
                "name": "VXN",
                "as_of": "2026-06-08T20:15:01.000Z",
                "index": "vxn",
                "level": 27.12,
                "change": -3.35,
                "regime": "elevated",
                "symbol": "^VXN",
                "day_low": 25.66,
                "day_high": 27.79,
                "change_pct": -10.99,
                "week52_low": 16.49,
                "asset_class": "Nasdaq-100",
                "description": "Nasdaq-100 implied volatility.",
                "week52_high": 33.92,
                "previous_close": 30.47
            },
            {
                "name": "VXD",
                "as_of": "2026-06-08T20:15:01.000Z",
                "index": "vxd",
                "level": 16.92,
                "change": -0.13,
                "regime": "normal",
                "symbol": "^VXD",
                "day_low": 15.98,
                "day_high": 17.43,
                "change_pct": -0.76,
                "week52_low": 3.1,
                "asset_class": "Dow Jones",
                "description": "Dow Jones Industrial Average implied volatility.",
                "week52_high": 34.44,
                "previous_close": 17.05
            },
            {
                "name": "OVX",
                "as_of": "2026-06-08T20:02:02.000Z",
                "index": "ovx",
                "level": 58.36,
                "change": 0.61,
                "regime": "extreme",
                "symbol": "^OVX",
                "day_low": 58.36,
                "day_high": 60.18,
                "change_pct": 1.06,
      
…