INDPROManufacturingMonthlyIndustrial Production Index
Measures the real output of manufacturing, mining, and electric/gas utility industries.
Update frequency
Monthly
Unit
Index
Historical coverage
1919-01/..
Why INDPRO matters
Business-cycle dating (NBER uses INDPRO as a coincident recession indicator), industrial-sector equity analysis.
Get the latest value
Fetch the most recent Industrial Production Index reading with a single GET request. Free tier includes 100 calls per day.
# cURL
curl -H "X-API-Key: brd_your_key" \
https://api.bullrundata.com/api/v1/indicators/INDPRO
# Python
import requests
r = requests.get(
"https://api.bullrundata.com/api/v1/indicators/INDPRO",
headers={"X-API-Key": "brd_your_key"},
)
print(r.json())
# JavaScript
const res = await fetch("https://api.bullrundata.com/api/v1/indicators/INDPRO", {
headers: { "X-API-Key": "brd_your_key" },
});
const data = await res.json();
Full historical time series
Retrieve the complete Industrial Production Index history with min/max/change statistics. Use the range parameter to control the window (1m, 3m, 6m, 1y, 2y, 5y — Enterprise plan extends further).
curl -H "X-API-Key: brd_your_key" \
"https://api.bullrundata.com/api/v1/indicators/INDPRO/timeseries?range=5y"