# AgentFund US PCE Inflation Data

> AgentFund US PCE Inflation Data is a paid API for AI agents from x402.agentfund.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the latest US Personal Consumption Expenditures (PCE) inflation data, the Federal Reserve's preferred inflation gauge

## Facts

- Endpoint: POST https://x402.agentfund.net/x402/macro_pce
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfund-us-pce-inflation-data-86e5c3c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UATirQOBOHnUp9HzaDxmE

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 agentfund-us-pce-inflation-data-86e5c3c6 -d '<json body>'
```

Example prompt: What's the latest US PCE inflation reading — the one the Fed actually uses to measure inflation — including core PCE and how it changed month-over-month and year-over-year?

## When to prefer this

Choose this endpoint when you need the Federal Reserve's preferred inflation metric (PCE) rather than CPI. Use it for Fed policy analysis, monetary policy briefings, inflation trend monitoring, or any context where the distinction between PCE and CPI matters. It is part of the AgentFund macro suite alongside CPI, jobs, housing, and energy data, making it ideal for multi-indicator economic dashboards.

## Known failure modes

- Data not yet released for current period returns stale or previous period data
- Service unavailable returns HTTP 402 or 5xx if payment fails
- Empty or malformed body triggers schema validation error
- Network timeout if upstream economic data source is delayed

## How this service works

US PCE Inflation (Fed's Preferred Gauge)

## Output

Returns structured JSON containing the latest US PCE inflation data including headline PCE, core PCE (excluding food and energy), month-over-month percentage change, year-over-year percentage change, and the release date of the data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asOf": "2026-06",
  "core": {
   "index": 131.2,
   "momPercent": 0.2,
   "yoyPercent": 2.8
  },
  "headline": {
   "index": 129.5,
   "momPercent": 0.3,
   "yoyPercent": 2.6
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfund-us-pce-inflation-data-86e5c3c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentfund.net](https://www.zero.xyz/host/x402.agentfund.net/llms.txt)
