API Documentation

⌘K
GET/api/1/market/cboe/indices

CBOE Indices

Returns CBOE index values including VIX, SKEW, VIX9D, VIX3M, VIX6M, and other volatility/sentiment indices

Parameters

2
symbolstring
query

Index symbol filter (e.g. VIX, SKEW, VIX9D)

daysnumber
query

Number of days of history (default 30, max 365)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/market/cboe/indices?symbol=AAPL&days=30' \
  -H 'Accept: application/json'
200 Response
[
  {
  "symbol": "VIX",
  "date": "2026-04-01T00:00:00.000Z",
  "open": 17.95,
  "high": 18.85,
  "low": 17.5,
  "close": 18.45
}
]