Average Interest Rate on Treasury Bonds was last reported at 3.453 percent as of August 1, 2026. That is up 0.32% from the prior reading of 3.442 percent. This indicator is reported Monthly and not seasonally adjusted, and is tracked under the Fiscal category.
| Date | Value (percent) |
|---|---|
| Aug 2026 | 3.453 |
| Jul 2026 | 3.442 |
| Jun 2026 | 3.430 |
| May 2026 | 3.413 |
| Apr 2026 | 3.403 |
| Mar 2026 | 3.392 |
| Feb 2026 | 3.377 |
| Jan 2026 | 3.369 |
| Dec 2025 | 3.360 |
| Nov 2025 | 3.346 |
| Date | Value (percent) |
|---|---|
| Oct 2025 | 3.338 |
| Sep 2025 | 3.327 |
| Aug 2025 | 3.311 |
| Jul 2025 | 3.309 |
| Jun 2025 | 3.297 |
| May 2025 | 3.278 |
| Apr 2025 | 3.267 |
| Mar 2025 | 3.254 |
| Feb 2025 | 3.243 |
| Jan 2025 | 3.236 |
Pull the full history of Average Interest Rate on Treasury Bonds 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=USAVGRATEBONDS&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USAVGRATEBONDS", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USAVGRATEBONDS&period=max&api_key=YOUR_API_KEY");
const data = await res.json();