Average Retail Electricity Price was last reported at 13.83 USd/kWh as of May 1, 2026. That is down 0.36% from the prior reading of 13.88 USd/kWh. This indicator is reported Monthly, and is tracked under the Energy category.
| Date | Value (USd/kWh) |
|---|---|
| May 2026 | 13.83 |
| Apr 2026 | 13.88 |
| Mar 2026 | 14.08 |
| Feb 2026 | 14.36 |
| Jan 2026 | 14.17 |
| Dec 2025 | 13.73 |
| Nov 2025 | 13.43 |
| Oct 2025 | 13.66 |
| Sep 2025 | 14.21 |
| Aug 2025 | 14.22 |
| Date | Value (USd/kWh) |
|---|---|
| Jul 2025 | 14.36 |
| Jun 2025 | 13.86 |
| May 2025 | 13.13 |
| Apr 2025 | 13.09 |
| Mar 2025 | 13.23 |
| Feb 2025 | 13.18 |
| Jan 2025 | 13.09 |
| Dec 2024 | 12.82 |
| Nov 2024 | 12.57 |
| Oct 2024 | 12.96 |
Pull the full history of Average Retail Electricity Price 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=USELECPRICE&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USELECPRICE", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USELECPRICE&period=max&api_key=YOUR_API_KEY");
const data = await res.json();