Dow Jones Industrial Average was last reported at 51,682.64 Index as of September 18, 2026. That is down 0.18% from the prior reading of 51,778.04 Index. This indicator is reported Daily, Close and not seasonally adjusted, and is tracked under the Markets category.
| Date | Value (Index) |
|---|---|
| Sep 18, 2026 | 51,682.64 |
| Sep 17, 2026 | 51,778.04 |
| Sep 16, 2026 | 51,461.90 |
| Sep 15, 2026 | 52,093.11 |
| Sep 14, 2026 | 52,421.20 |
| Sep 11, 2026 | 52,573.29 |
| Sep 10, 2026 | 52,064.10 |
| Sep 9, 2026 | 52,380.66 |
| Sep 8, 2026 | 52,786.07 |
| Sep 4, 2026 | 53,414.25 |
| Date | Value (Index) |
|---|---|
| Sep 3, 2026 | 53,686.11 |
| Sep 2, 2026 | 53,061.95 |
| Sep 1, 2026 | 52,766.88 |
| Aug 31, 2026 | 53,185.90 |
| Aug 28, 2026 | 53,559.99 |
| Aug 27, 2026 | 53,569.44 |
| Aug 26, 2026 | 53,463.88 |
| Aug 25, 2026 | 53,577.40 |
| Aug 24, 2026 | 53,417.16 |
| Aug 21, 2026 | 53,277.01 |
Pull the full history of Dow Jones Industrial Average 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=USDJIA&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USDJIA", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USDJIA&period=max&api_key=YOUR_API_KEY");
const data = await res.json();