# AutoNation Used Inventory Scraper

**Use case:** 

Scrape AutoNation used-car inventory with make, model, year, trim, price, mileage, VIN, and listing URL. Export results to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "yearMin": 1992,
  "yearMax": 2027,
  "priceMin": 1,
  "priceMax": 420000,
  "mileageMin": 0,
  "mileageMax": 1080000
}
```

## Output

```json
{
  "primaryImageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "itemUrl": {
    "label": "URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceFormatted": {
    "label": "Price Formatted",
    "format": "text"
  },
  "vehicleYear": {
    "label": "Year",
    "format": "number"
  },
  "vehicleMake": {
    "label": "Make",
    "format": "text"
  },
  "vehicleModel": {
    "label": "Model",
    "format": "text"
  },
  "vehicleTrim": {
    "label": "Trim",
    "format": "text"
  },
  "vehicleCondition": {
    "label": "Condition",
    "format": "text"
  },
  "vehicleVIN": {
    "label": "VIN",
    "format": "text"
  },
  "stockNumber": {
    "label": "Stock Number",
    "format": "text"
  },
  "odometer": {
    "label": "Mileage",
    "format": "number"
  },
  "bodyStyle": {
    "label": "Body Style",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel Type",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "dealerName": {
    "label": "Dealer Name",
    "format": "text"
  },
  "dealerPhone": {
    "label": "Dealer Phone",
    "format": "text"
  },
  "dealerCity": {
    "label": "Dealer City",
    "format": "text"
  },
  "dealerState": {
    "label": "Dealer State",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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