Yield Curve, 10Y minus 2Y was last reported at 0.25 % as of September 18, 2026. That is down 7.41% from the prior reading of 0.27 %. 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 18, 2026 | 0.25 |
| Sep 17, 2026 | 0.27 |
| Sep 16, 2026 | 0.27 |
| Sep 15, 2026 | 0.33 |
| Sep 14, 2026 | 0.32 |
| Sep 11, 2026 | 0.33 |
| Sep 10, 2026 | 0.39 |
| Sep 9, 2026 | 0.40 |
| Sep 8, 2026 | 0.41 |
| Sep 4, 2026 | 0.41 |
| Date | Value (%) |
|---|---|
| Sep 3, 2026 | 0.43 |
| Sep 2, 2026 | 0.40 |
| Sep 1, 2026 | 0.40 |
| Aug 31, 2026 | 0.41 |
| Aug 28, 2026 | 0.39 |
| Aug 27, 2026 | 0.47 |
| Aug 26, 2026 | 0.47 |
| Aug 25, 2026 | 0.47 |
| Aug 24, 2026 | 0.46 |
| Aug 21, 2026 | 0.50 |
Pull the full history of Yield Curve, 10Y minus 2Y 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=USCURVE102&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USCURVE102", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USCURVE102&period=max&api_key=YOUR_API_KEY");
const data = await res.json();