S&P 500 Index was last reported at 7,637.76 Index as of September 17, 2026. That is up 1.14% from the prior reading of 7,551.81 Index. This indicator is reported Daily, Close and not seasonally adjusted, and is tracked under the Markets category.
| Date | Value (Index) |
|---|---|
| Sep 17, 2026 | 7,637.76 |
| Sep 16, 2026 | 7,551.81 |
| Sep 15, 2026 | 7,585.73 |
| Sep 14, 2026 | 7,619.98 |
| Sep 11, 2026 | 7,656.98 |
| Sep 10, 2026 | 7,591.70 |
| Sep 9, 2026 | 7,636.36 |
| Sep 8, 2026 | 7,673.52 |
| Sep 4, 2026 | 7,718.60 |
| Sep 3, 2026 | 7,747.71 |
| Date | Value (Index) |
|---|---|
| Sep 2, 2026 | 7,666.60 |
| Sep 1, 2026 | 7,631.47 |
| Aug 31, 2026 | 7,686.14 |
| Aug 28, 2026 | 7,711.76 |
| Aug 27, 2026 | 7,730.99 |
| Aug 26, 2026 | 7,675.70 |
| Aug 25, 2026 | 7,677.28 |
| Aug 24, 2026 | 7,652.86 |
| Aug 21, 2026 | 7,674.37 |
| Aug 20, 2026 | 7,641.16 |
Pull the full history of S&P 500 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=USSPX&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USSPX", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USSPX&period=max&api_key=YOUR_API_KEY");
const data = await res.json();