# Cars.com Vehicle Listing Data Extractor

**Use case:** 

Extract detailed vehicle listings from Cars.com, including pricing, specs, and dealer information for up to 200 listings.

## Input

```json
{
  "searchUrl": "https://www.cars.com/shopping/results/?stock_type=new&zip=60606&maximum_distance=50",
  "maxListings": 200,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "title": {
    "label": "Vehicle",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "bodyStyle": {
    "label": "Body Style",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "msrp": {
    "label": "MSRP",
    "format": "number"
  },
  "shipPrice": {
    "label": "Ship Price",
    "format": "number"
  },
  "stockType": {
    "label": "Condition",
    "format": "text"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "dealer": {
    "label": "Dealer",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "cpoIndicator": {
    "label": "CPO",
    "format": "boolean"
  },
  "financingType": {
    "label": "Financing",
    "format": "text"
  },
  "deliveryType": {
    "label": "Delivery",
    "format": "text"
  },
  "isaContext": {
    "label": "ISA Context",
    "format": "text"
  },
  "attributionType": {
    "label": "Attribution",
    "format": "text"
  },
  "sponsoredType": {
    "label": "Sponsored Type",
    "format": "text"
  },
  "sellerZip": {
    "label": "Seller ZIP",
    "format": "text"
  },
  "sellerCustomerId": {
    "label": "Seller ID",
    "format": "text"
  },
  "pageNumber": {
    "label": "Page",
    "format": "number"
  },
  "positionOnPage": {
    "label": "Position",
    "format": "number"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "imageCount": {
    "label": "Images",
    "format": "number"
  },
  "galleryImages": {
    "label": "Gallery Image URLs",
    "format": "array"
  },
  "url": {
    "label": "Details",
    "format": "link"
  },
  "sourceApi": {
    "label": "Source API",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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