10-Year Treasury Yield was last reported at 4.94 % as of September 17, 2026. That is down 1.40% from the prior reading of 5.01 %. This indicator is reported Daily and not seasonally adjusted, and is tracked under the Rates category. The next scheduled release is September 21, 2026.
| Date | Value (%) |
|---|---|
| Sep 17, 2026 | 4.94 |
| Sep 16, 2026 | 5.01 |
| Sep 15, 2026 | 5.00 |
| Sep 14, 2026 | 4.97 |
| Sep 11, 2026 | 4.96 |
| Sep 10, 2026 | 4.95 |
| Sep 9, 2026 | 4.83 |
| Sep 8, 2026 | 4.80 |
| Sep 4, 2026 | 4.78 |
| Sep 3, 2026 | 4.77 |
| Date | Value (%) |
|---|---|
| Sep 2, 2026 | 4.79 |
| Sep 1, 2026 | 4.79 |
| Aug 31, 2026 | 4.75 |
| Aug 28, 2026 | 4.73 |
| Aug 27, 2026 | 4.67 |
| Aug 26, 2026 | 4.66 |
| Aug 25, 2026 | 4.64 |
| Aug 24, 2026 | 4.70 |
| Aug 21, 2026 | 4.74 |
| Aug 20, 2026 | 4.69 |
Pull the full history of 10-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=UST10Y&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "UST10Y", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=UST10Y&period=max&api_key=YOUR_API_KEY");
const data = await res.json();