# BLS Core CPI Changes Feed

> BLS Core CPI Changes Feed is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns new Bureau of Labor Statistics prints of core CPI (less food & energy) with value, period, and month-over-month change detection.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/econ-core-cpi/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bls-core-cpi-changes-feed-6f1ff0f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__OKpEAA7EF4RJeOO2kwzW

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 bls-core-cpi-changes-feed-6f1ff0f5
```

Example prompt: Show me any new BLS core CPI prints detected since January 1, 2025 with a significance score of at least 5 — I want to see the value, period, and month-over-month change.

## When to prefer this

Use this endpoint when you need structured, change-detected BLS core CPI (less food & energy) data with significance scoring and primary-source links — particularly for monitoring inflation trends, alerting on new prints, or building economic dashboards. Prefer this over raw BLS API access when you want pre-processed change detection, significance ranking, and a consistent JSON schema.

## Known failure modes

- Invalid since datetime format returns 400 validation error
- limit out of range (not 1-500) returns 400
- min_significance out of range (not 1-10) returns 400
- No new CPI prints available returns empty changes array with count 0
- Payment not provided or insufficient returns 402
- BLS data source unavailable may return 503 or stale data

## How this service works

New Bureau of Labor Statistics prints of core CPI (less food & energy), with the value, period, and month-over-month change.

## Output

A JSON array of core CPI change events, each with a type, title, summary, detail object, significance score (1-10), effective date, detected timestamp, and a primary-source URL linking back to BLS for verification. Also includes a count and source identifier.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bls-core-cpi-changes-feed-6f1ff0f5/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)
