# Stratalize Inflation Benchmark

> Stratalize Inflation 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 inflation metrics including CPI, core CPI, PCE, core PCE, TIPS breakevens, and shelter/medical components sourced from FRED daily data.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/get_inflation_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-c8af29ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A6mDelC-vhnOwYHgP0bUR

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-c8af29ce
```

Example prompt: Pull all current inflation benchmarks — CPI, core PCE, TIPS breakevens, and the Fed target gap — so I can assess how sticky inflation is right now.

## When to prefer this

Use this endpoint when a macro agent, CFO, or fixed income portfolio manager needs a comprehensive, up-to-date snapshot of the U.S. inflation landscape including both headline and core measures, breakeven inflation expectations, and the gap to the Fed's target. Prefer this over generic economic data APIs when you need inflation-specific components like shelter and medical CPI in a single call.

## Known failure modes

- FRED data feed unavailable — returns 503 or stale data flag
- Invalid measure enum value — returns 400 bad request
- No data for requested component — returns empty or null field
- Payment not processed — returns 402 payment required

## How this service works

Use when a macro agent or CFO needs current inflation trajectory and Fed target gap. Returns CPI, core CPI, PCE, core PCE, TIPS breakevens, shelter and medical components. Example: CPI 3.3%, core PCE 2.8%, Fed target gap 80bps — sticky inflation. Source: FRED daily.

## Output

A structured response containing current values for CPI, core CPI, PCE, core PCE, TIPS breakeven rates, shelter and medical sub-components, and the calculated gap between current inflation and the Fed's 2% target, all sourced from FRED daily data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "measure": {
   "enum": [
    "cpi",
    "pce",
    "breakeven",
    "components",
    "all"
   ],
   "type": "string",
   "description": "Request parameter: measure"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-stratalize-com-c8af29ce/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)
