# BLS CPI Inflation Data Scraper

**Use case:** 

Extract official U.S. Consumer Price Index inflation figures from the Bureau of Labor Statistics for 2022-2024 as clean, ready-to-use data.

## Input

```json
{
  "maxItems": 3,
  "seriesId": "CUUR0000SA0",
  "startYear": "2022",
  "endYear": "2024"
}
```

## Output

```json
{
  "seriesId": {
    "label": "Series Id",
    "format": "text"
  },
  "seriesName": {
    "label": "Series Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "seasonallyAdjusted": {
    "label": "Seasonally Adjusted",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "period": {
    "label": "Period",
    "format": "text"
  },
  "periodName": {
    "label": "Period Name",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "netChange1Month": {
    "label": "Net Change1 Month",
    "format": "number"
  },
  "netChange3Month": {
    "label": "Net Change3 Month",
    "format": "number"
  },
  "netChange6Month": {
    "label": "Net Change6 Month",
    "format": "number"
  },
  "netChange12Month": {
    "label": "Net Change12 Month",
    "format": "number"
  },
  "pctChange1Month": {
    "label": "Pct Change1 Month",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [BLS Wage Data Scraper](https://apify.com/parseforge/bls-wage-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/bls-wage-data-scraper) to learn more, explore other use cases, and run it yourself.