# Scrape used truck inventory on CarMax across the Midwest

**Use case:** 

Gather used truck listings from CarMax across the Midwest. Get detailed information like prices, mileage, and locations for RAM, GMC, Ford, and Chevrolet.

## Input

```json
{
  "zips": [
    "60601",
    "48226",
    "43215"
  ],
  "makes": [
    "RAM",
    "GMC",
    "Ford",
    "Chevrolet"
  ],
  "radius": 250,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "vin": {
    "label": "VIN",
    "format": "string"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "price": {
    "label": "Price",
    "format": "integer"
  },
  "mileage": {
    "label": "Mileage",
    "format": "integer"
  },
  "storeName": {
    "label": "Store",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Carmax Zipcode Search Scraper](https://apify.com/e-commerce/carmax-zipcode-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/e-commerce/carmax-zipcode-search-scraper) to learn more, explore other use cases, and run it yourself.