VIX Volatility Index was last reported at 15.44 Index as of September 17, 2026. That is down 12.82% from the prior reading of 17.71 Index. This indicator is reported Daily, Close and not seasonally adjusted, and is tracked under the Markets category. The next scheduled release is September 21, 2026.
| Date | Value (Index) |
|---|---|
| Sep 17, 2026 | 15.44 |
| Sep 16, 2026 | 17.71 |
| Sep 15, 2026 | 17.20 |
| Sep 14, 2026 | 17.10 |
| Sep 11, 2026 | 15.84 |
| Sep 10, 2026 | 17.84 |
| Sep 9, 2026 | 16.46 |
| Sep 8, 2026 | 15.72 |
| Sep 7, 2026 | 15.30 |
| Sep 4, 2026 | 14.53 |
| Date | Value (Index) |
|---|---|
| Sep 3, 2026 | 14.32 |
| Sep 2, 2026 | 15.20 |
| Sep 1, 2026 | 16.34 |
| Aug 31, 2026 | 14.92 |
| Aug 28, 2026 | 14.43 |
| Aug 27, 2026 | 14.51 |
| Aug 26, 2026 | 15.21 |
| Aug 25, 2026 | 15.45 |
| Aug 24, 2026 | 15.85 |
| Aug 21, 2026 | 15.13 |
Pull the full history of VIX Volatility Index into your own models, spreadsheets and apps with the
free Business Quant Economic Data API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/economic?code=USVIX&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USVIX", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USVIX&period=max&api_key=YOUR_API_KEY");
const data = await res.json();