Energy Consumption per Capita was last reported at 278.1 Million Btu as of January 1, 2024. That is down 0.04% from the prior reading of 278.2 Million Btu. This indicator is reported Annual, and is tracked under the Energy category.
| Date | Value (Million Btu) |
|---|---|
| 2024 | 278.1 |
| 2023 | 278.2 |
| 2022 | 284.2 |
| 2021 | 281.1 |
| 2020 | 268.0 |
| 2019 | 294.1 |
| 2018 | 298.0 |
| 2017 | 288.8 |
| 2016 | 291.2 |
| 2015 | 294.5 |
| Date | Value (Million Btu) |
|---|---|
| 2014 | 299.4 |
| 2013 | 298.2 |
| 2012 | 292.0 |
| 2011 | 301.6 |
| 2010 | 307.5 |
| 2009 | 298.7 |
| 2008 | 317.9 |
| 2007 | 328.6 |
| 2006 | 325.9 |
| 2005 | 332.0 |
Pull the full history of Energy Consumption per Capita 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=USENERGYPERCAP&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USENERGYPERCAP", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USENERGYPERCAP&period=max&api_key=YOUR_API_KEY");
const data = await res.json();