# 2022 EPA Fuel Economy Scraper

**Use case:** 

Scrape 2022 US EPA fuel economy data by engine config with MPG, make, model and emissions. Structured vehicle efficiency data fast.

## Input

```json
{
  "mode": "vehicles",
  "year": 2022,
  "aggregateBy": "engineConfig",
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "number"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "engineConfig": {
    "label": "Engine Config",
    "format": "text"
  },
  "vehicleClass": {
    "label": "Vehicle Class",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel Type",
    "format": "text"
  },
  "fuelType1": {
    "label": "Fuel Type1",
    "format": "text"
  },
  "cityMpg": {
    "label": "City Mpg",
    "format": "number"
  },
  "highwayMpg": {
    "label": "Highway Mpg",
    "format": "number"
  },
  "combinedMpg": {
    "label": "Combined Mpg",
    "format": "number"
  },
  "annualFuelCostUsd": {
    "label": "Annual Fuel Cost Usd",
    "format": "number"
  },
  "co2TailpipeGpm": {
    "label": "Co2 Tailpipe Gpm",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [US EPA Fuel Economy Scraper](https://apify.com/parseforge/fueleconomy-gov-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/fueleconomy-gov-scraper) to learn more, explore other use cases, and run it yourself.