US Real Effective Exchange Rate was last reported at 106.70 points as of August 1, 2026. That is down 1.40% from the prior reading of 108.22 points. This indicator is reported Monthly, and is tracked under the Trade category.
| Date | Value (points) |
|---|---|
| Aug 2026 | 106.70 |
| Jul 2026 | 108.22 |
| Jun 2026 | 107.83 |
| May 2026 | 107.20 |
| Apr 2026 | 106.97 |
| Mar 2026 | 107.39 |
| Feb 2026 | 104.94 |
| Jan 2026 | 106.36 |
| Dec 2025 | 106.71 |
| Nov 2025 | 108.02 |
| Date | Value (points) |
|---|---|
| Oct 2025 | 107.69 |
| Sep 2025 | 107.49 |
| Aug 2025 | 107.94 |
| Jul 2025 | 107.28 |
| Jun 2025 | 108.04 |
| May 2025 | 109.25 |
| Apr 2025 | 110.86 |
| Mar 2025 | 112.36 |
| Feb 2025 | 113.71 |
| Jan 2025 | 114.50 |
Pull the full history of US Real Effective Exchange Rate 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=USREER&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USREER", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USREER&period=max&api_key=YOUR_API_KEY");
const data = await res.json();