# Camry Fuel Economy Vehicle

**Use case:** 

Explore Camry with Fuel Economy Vehicle Scraper - MPG and Emissions. Run the tested configuration and export structured results as JSON, CSV, or Excel.

## Input

```json
{
  "year": 2024,
  "make": "Toyota",
  "model": "Camry",
  "maxResults": 3
}
```

## Output

```json
{
  "vehicle_id": {
    "label": "Vehicle Id",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "configuration": {
    "label": "Configuration",
    "format": "text"
  },
  "vehicle_class": {
    "label": "Vehicle Class",
    "format": "text"
  },
  "drive": {
    "label": "Drive",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "fuel_type": {
    "label": "Fuel Type",
    "format": "text"
  },
  "city_mpg": {
    "label": "City Mpg",
    "format": "number"
  },
  "highway_mpg": {
    "label": "Highway Mpg",
    "format": "number"
  },
  "combined_mpg": {
    "label": "Combined Mpg",
    "format": "number"
  },
  "annual_fuel_cost": {
    "label": "Annual Fuel Cost",
    "format": "number"
  },
  "co2_grams_per_mile": {
    "label": "Co2 Grams Per Mile",
    "format": "number"
  },
  "greenhouse_gas_score": {
    "label": "Greenhouse Gas Score",
    "format": "text"
  },
  "fuel_economy_score": {
    "label": "Fuel Economy Score",
    "format": "text"
  },
  "vehicle_url": {
    "label": "Vehicle Url",
    "format": "link"
  },
  "source": {
    "label": "Source",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Fuel Economy Vehicle Scraper - MPG and Emissions](https://apify.com/benthepythondev/fuel-economy-vehicle-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/fuel-economy-vehicle-scraper) to learn more, explore other use cases, and run it yourself.