20-Year Treasury Yield was last reported at 5.33 percent as of September 22, 2026. That reading was unchanged from the prior value of 5.33 percent. This indicator is reported Daily and not seasonally adjusted, and is tracked under the Rates category. The next scheduled release is September 25, 2026.
| Date | Value (percent) |
|---|---|
| Sep 22, 2026 | 5.33 |
| Sep 21, 2026 | 5.33 |
| Sep 18, 2026 | 5.38 |
| Sep 17, 2026 | 5.32 |
| Sep 16, 2026 | 5.39 |
| Sep 15, 2026 | 5.40 |
| Sep 14, 2026 | 5.37 |
| Sep 11, 2026 | 5.38 |
| Sep 10, 2026 | 5.39 |
| Sep 9, 2026 | 5.28 |
| Date | Value (percent) |
|---|---|
| Sep 8, 2026 | 5.26 |
| Sep 4, 2026 | 5.25 |
| Sep 3, 2026 | 5.25 |
| Sep 2, 2026 | 5.27 |
| Sep 1, 2026 | 5.27 |
| Aug 31, 2026 | 5.24 |
| Aug 28, 2026 | 5.21 |
| Aug 27, 2026 | 5.18 |
| Aug 26, 2026 | 5.17 |
| Aug 25, 2026 | 5.16 |
Pull the full history of 20-Year Treasury Yield 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=UST20Y&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "UST20Y", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=UST20Y&period=max&api_key=YOUR_API_KEY");
const data = await res.json();