Treasury Yield API
10-Year U.S. Treasury yield with trend analysis — signals monetary conditions and risk appetite.
https://api.hunchmachine.com/webhook/indicators?indicator=treasury_yield&api_key=YOUR_API_KEYDescription
Tracks the yield (interest rate) of the 10-Year U.S. Treasury Note — a core benchmark for global financial conditions and risk appetite. Rising yields typically signal tighter liquidity and higher borrowing costs, while falling yields suggest easing conditions and support for risk assets.
What this endpoint provides
Returns both the latest yield and a short-term historical analysis, already summarized for easy integration into automations or AI reasoning systems.
Response fields
latest_dateDate of the most recent yield reading.
latest_valueCurrent yield percentage.
avg_30dAverage yield over the last 30 days (gives short-term baseline).
change_30d_pct, change_90d_pct, change_180d_pctPercentage changes over multiple timeframes, helping identify medium- and long-term shifts in monetary sentiment.
trend_30d, trend_90d, trend_180dDirectional flags (up / down / flat) indicating short-, mid-, and long-term trends.
summaryNatural-language interpretation combining recent performance and trend context (e.g. "Mixed trends — transitional macro phase").
timestampUTC time when the indicator was last updated.
Output example
[
{
"indicator": "treasury_yield",
"latest_date": "2025-10-30",
"latest_value": 4.11,
"avg_30d": 4.09,
"change_30d_pct": 1.23,
"change_90d_pct": -5.3,
"change_180d_pct": -9.47,
"trend_30d": "up",
"trend_90d": "down",
"trend_180d": "down",
"summary": "10Y Treasury Yield latest 4.11%. 30d: 1.23% (up), 90d: -5.30% (down), 180d: -9.47% (down). Mixed trends — transitional macro phase.",
"timestamp": "2025-10-31T20:43:00.178Z"
}
]Interpretation & Use
A rising 10Y yield often precedes tighter financial conditions and can pressure equities and risk assets. A falling yield indicates easing conditions and risk-on potential. Automations can use trend_30d or the summary field directly to infer whether the macro backdrop is tightening or loosening without needing additional data sources.