Average Interest Rate on Treasury Notes was last reported at 3.345 percent as of August 1, 2026. That is up 1.09% from the prior reading of 3.309 percent. This indicator is reported Monthly and not seasonally adjusted, and is tracked under the Fiscal category.
| Date | Value (percent) |
|---|---|
| Aug 2026 | 3.345 |
| Jul 2026 | 3.309 |
| Jun 2026 | 3.283 |
| May 2026 | 3.248 |
| Apr 2026 | 3.230 |
| Mar 2026 | 3.212 |
| Feb 2026 | 3.190 |
| Jan 2026 | 3.169 |
| Dec 2025 | 3.157 |
| Nov 2025 | 3.133 |
| Date | Value (percent) |
|---|---|
| Oct 2025 | 3.124 |
| Sep 2025 | 3.112 |
| Aug 2025 | 3.087 |
| Jul 2025 | 3.073 |
| Jun 2025 | 3.048 |
| May 2025 | 3.008 |
| Apr 2025 | 2.990 |
| Mar 2025 | 2.963 |
| Feb 2025 | 2.932 |
| Jan 2025 | 2.891 |
Pull the full history of Average Interest Rate on Treasury Notes 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=USAVGRATENOTES&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USAVGRATENOTES", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USAVGRATENOTES&period=max&api_key=YOUR_API_KEY");
const data = await res.json();