# Stratalize Treasury Yield Curve Benchmark

> Stratalize Treasury Yield Curve Benchmark is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns current US Treasury yields across 1M-30Y tenors, key curve spreads (2s10s, 2s30s), inversion signal, and SOFR from FRED daily data

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/get_yield_curve_benchmark
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-stratalize-com-c3960f08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CX1Zp_odXFVulw1gWYyed

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability www-stratalize-com-c3960f08
```

Example prompt: Pull the full Treasury yield curve right now — give me all tenors from 1M to 30Y, the 2s10s and 2s30s spreads, whether the curve is inverted, and current SOFR.

## When to prefer this

Use this endpoint when you need a comprehensive, pre-packaged Treasury yield curve snapshot with derived signals (inversion status, spreads) rather than pulling raw FRED data yourself. Ideal for fixed income PMs, macro agents, and rate-sensitive portfolio analytics that need curve shape and spread context in a single call. Prefer over generic financial data APIs when you specifically need the 2s10s/2s30s spread and inversion signal computed for you.

## Known failure modes

- FRED data unavailable or delayed — endpoint may return stale or error response
- Invalid tenor enum value (not one of 2y, 10y, 30y, all) — returns 400 bad request
- Payment failure (x402) — returns 402 if USDC payment not provided
- Weekend/holiday — FRED data may not update, returning prior business day values

## How this service works

Use when a trader or fixed income PM needs current Treasury yield levels and curve shape. Returns 1M-30Y yields, 2s10s and 2s30s spreads, inversion signal, and SOFR. Example: 2s10s +49bps, curve normalizing — late cycle signal. Source: FRED daily.

## Output

Returns current US Treasury yields for 1M through 30Y maturities, the 2s10s and 2s30s curve spread in basis points, a boolean or signal indicating curve inversion status, and the current SOFR rate — all sourced from FRED and updated daily. Useful for late-cycle macro positioning signals and fixed income benchmarking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tenor": {
   "enum": [
    "2y",
    "10y",
    "30y",
    "all"
   ],
   "type": "string",
   "description": "Request parameter: tenor"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-stratalize-com-c3960f08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
