Premium Recession Watch
1 creditGET /api/premium/economy/recession-watchComposite recession-watch indicator built on top of BLS unemployment, JOLTS, claims, and FRED yield-curve data. Returns probability score (0-100), regime classification, and the contributing series.
When to use this endpoint
For agents that need a one-shot "recession risk" signal instead of pulling 8 raw FRED/BLS series and computing the composite themselves.
Example response
{ "ok": true, "as_of": "2026-05-08", "probability_pct": 23, "regime": "expansion", "components": { "yield_curve_inversion": false, "unemployment_trend": "flat", "claims_trend": "rising_slow" }, "billing": { "credits_charged": 1, "credits_remaining": 49 } }Code samples
Python SDK
tf._get("/premium/economy/recession-watch")TypeScript SDK
await fetch("https://tensorfeed.ai/api/premium/economy/recession-watch", { headers: { Authorization: "Bearer tf_live_..." } });FAQ
What is the methodology?
Heuristic composite of yield-curve inversion (T10Y2Y), Sahm-rule unemployment trigger, claims trend, JOLTS hires/separations, and PMI direction. Documented in worker/src/recession-watch.ts.