# Scrape Salvage Tesla Auction Listings

**Use case:** 

Identify all available salvage Tesla vehicles listed on Copart auctions. This helps dealers and repair shops quickly source high-demand vehicles for rebuilding 

## Input

```json
{
  "startUrl": "https://www.copart.com/lotSearchResults/?query=Tesla&damageCode=SLV",
  "maxItems": 200
}
```

## Output

```json
{
  "lot_number": {
    "label": "Lot #",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "trim": {
    "label": "Trim",
    "format": "string"
  },
  "primary_damage": {
    "label": "Primary Damage",
    "format": "string"
  },
  "odometer": {
    "label": "Odometer",
    "format": "integer"
  },
  "current_bid": {
    "label": "Current Bid ($)",
    "format": "number"
  },
  "sale_status": {
    "label": "Status",
    "format": "string"
  },
  "auction_date": {
    "label": "Auction Date",
    "format": "string"
  },
  "sale_location": {
    "label": "Location",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "item_url": {
    "label": "Lot URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Copart Public Search Scraper](https://apify.com/crawlerbros/copart-public-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/copart-public-search-scraper) to learn more, explore other use cases, and run it yourself.