# Autotrader US Scraper – Car Listings, VINs & Dealer Data

**Use case:** 

Scrape Autotrader US. Search/URL + filters. Get 60+ fields: price, specs, dealer contacts & price rating in clean JSON.

## Input

```json
{
  "mode": "search",
  "zip": "90012",
  "searchRadius": 50,
  "make": [
    "HONDA"
  ],
  "sellerType": "any",
  "sortBy": "relevance",
  "urls": [
    "https://www.autotrader.com/cars-for-sale/all-cars/honda/civic/los-angeles-ca"
  ],
  "fetchDetails": true,
  "maxListings": 3,
  "maxPages": 200,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "exteriorColor": {
    "label": "Color",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel",
    "format": "text"
  },
  "dealIndicator": {
    "label": "Deal",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "sellerPhone": {
    "label": "Phone",
    "format": "text"
  },
  "sellerCity": {
    "label": "City",
    "format": "text"
  },
  "sellerState": {
    "label": "State",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Autotrader US – Car Listings, VINs & Dealer Data](https://apify.com/abotapi/autotrader-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/autotrader-com-scraper) to learn more, explore other use cases, and run it yourself.