# CPI-U Inflation Status Oracle

> CPI-U Inflation Status Oracle is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the latest reported CPI-U (all items) inflation value from the US Bureau of Labor Statistics.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/econ-cpi/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cpi-u-inflation-status-oracle-19ab5a6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zrTKYIa_G9mK57wlRTCVF

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 cpi-u-inflation-status-oracle-19ab5a6a
```

Example prompt: What is the latest reported CPI-U all-items inflation value right now?

## When to prefer this

Use this endpoint when you need the latest official US Consumer Price Index (CPI-U, all items) value for inflation tracking, economic analysis, cost-of-living calculations, or financial modeling. Prefer this over general web search when you need a structured, machine-readable inflation figure with a defined schema.

## Known failure modes

- Payment not included or insufficient (402 Payment Required)
- Invalid or unrecognized entityId returns empty or error response
- Data source temporarily unavailable leads to stale or missing value
- Rate limiting or quota exceeded

## How this service works

Latest reported CPI-U (all items, inflation) value.

## Output

Returns a structured entity object containing the latest CPI-U (all items) value as reported, including the index figure and associated metadata such as the reporting date.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cpi-u-inflation-status-oracle-19ab5a6a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
