# Scrape a Cars.com search URL - Cars.com

**Use case:** 

Export any Cars.com search URL into year, make, model, trim, price, price drop, mileage, dealer and location. Export to JSON, CSV or Excel.

## Input

```json
{
  "searchUrls": [
    "https://www.cars.com/shopping/results/?stock_type=used&makes[]=tesla&models[]=tesla-model_3&zip=10001"
  ],
  "listingUrls": [],
  "stockType": "all",
  "sellerType": "any",
  "onlyWithPriceDrop": false,
  "sortBy": "best_match_desc",
  "includeCarDetails": false,
  "includeDealerLeads": false,
  "maxResults": 100,
  "monitorMode": false,
  "monitorKey": "default",
  "includeRawFields": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Vehicle"
  },
  "year": {
    "label": "Year"
  },
  "make": {
    "label": "Make"
  },
  "model": {
    "label": "Model"
  },
  "trim": {
    "label": "Trim"
  },
  "price": {
    "label": "Price"
  },
  "priceDropAmount": {
    "label": "Price drop"
  },
  "mileage": {
    "label": "Mileage"
  },
  "stockType": {
    "label": "Condition"
  },
  "dealerName": {
    "label": "Dealer"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "listingUrl": {
    "label": "URL"
  }
}
```

## About this Actor

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