# x402stock PCE Inflation Data

> x402stock PCE Inflation Data is a paid API for AI agents from x402stock.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns the latest US PCE (Personal Consumption Expenditures) price inflation data including headline and core index levels with year-over-year percent changes and monthly history, sourced from FRED.

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/pce
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-pce-inflation-data-8aafe322
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u3rkU6M0KpKlKaIuwn8Bs

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 x402stock-pce-inflation-data-8aafe322
```

Example prompt: What's the latest PCE inflation reading — both headline and core — including year-over-year change and recent monthly history?

## When to prefer this

Use this endpoint when you need the Fed's preferred inflation metric (PCE) rather than CPI — particularly for monetary policy analysis, Fed rate decision context, or when comparing headline vs core inflation excluding food and energy. Prefer over CPI endpoints when the question is about what the Federal Reserve targets.

## Known failure modes

- FRED data temporarily unavailable — stale or empty response
- Payment not processed — 402 response if USDC not provided
- Network timeout if FRED upstream is slow
- Null values for latest_index or yoy_percent if most recent data not yet released

## How this service works

US PCE (Personal Consumption Expenditures) price inflation — the Fed's preferred inflation gauge — with the latest headline and core (ex food and energy) index levels, each with year-over-year percent change, plus recent monthly history. No ticker needed. Complements the CPI endpoint with the measure the Fed actually targets. Sourced from the St. Louis Fed (FRED). From x402stock

## Output

Returns an object with source (fred), as_of date, series name, unit, headline PCE object (series_id, latest_index, latest_month, yoy_percent), core PCE object (series_id, latest_index, latest_month, yoy_percent), and an array of recent monthly history entries each with date and value.

## Example request

```json
{
 "properties": ""
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "core": {
   "series_id": "PCEPILFE",
   "yoy_percent": 2.6,
   "latest_index": 128.9,
   "latest_month": "2026-04-01"
  },
  "unit": "index_2017=100",
  "as_of": "2026-04-01T00:00:00.000Z",
  "series": "pce_price_index",
  "source": "fred",
  "history": [
   {
    "date": "2026-04-01",
    "value": 127.4
   }
  ],
  "headline": {
   "series_id": "PCEPI",
   "yoy_percent": 2.3,
   "latest_index": 127.4,
   "latest_month": "2026-04-01"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-pce-inflation-data-8aafe322/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402stock.xyz](https://www.zero.xyz/host/x402stock.xyz/llms.txt)
