Bank Reserves was last reported at 3,051.5 Bil. of $ as of July 1, 2026. That is up 1.08% from the prior reading of 3,018.8 Bil. of $. This indicator is reported Monthly and not seasonally adjusted, and is tracked under the Money category. The next scheduled release is September 22, 2026.
| Date | Value (Bil. of $) |
|---|---|
| Jul 2026 | 3,051.5 |
| Jun 2026 | 3,018.8 |
| May 2026 | 3,078.8 |
| Apr 2026 | 3,018.1 |
| Mar 2026 | 3,016.1 |
| Feb 2026 | 2,956.6 |
| Jan 2026 | 2,967.9 |
| Dec 2025 | 2,941.7 |
| Nov 2025 | 2,879.4 |
| Oct 2025 | 2,944.9 |
| Date | Value (Bil. of $) |
|---|---|
| Sep 2025 | 3,068.1 |
| Aug 2025 | 3,281.9 |
| Jul 2025 | 3,340.3 |
| Jun 2025 | 3,356.0 |
| May 2025 | 3,263.0 |
| Apr 2025 | 3,355.0 |
| Mar 2025 | 3,408.3 |
| Feb 2025 | 3,261.2 |
| Jan 2025 | 3,255.6 |
| Dec 2024 | 3,240.4 |
Pull the full history of Bank Reserves 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=USRESERVES&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USRESERVES", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USRESERVES&period=max&api_key=YOUR_API_KEY");
const data = await res.json();