# Copart BMW Salvage Lots - European Export-Ready Data

**Use case:** 

Extract BMW salvage auction lots from Copart with VIN, engine, damage and sale location for European dealers and parts exporters. Filter by model with search queries.

## Input

```json
{
  "searchQuery": "bmw",
  "startUrls": [
    {
      "url": "https://www.copart.com/lotSearchResults/?free=true&query=ford+f-150"
    }
  ],
  "maxItems": 100,
  "maxRequestRetries": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "BUYPROXIES94952"
    ]
  }
}
```

## Output

```json
{
  "lotNumber": {
    "label": "Lot number",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "trim": {
    "label": "Trim",
    "format": "string"
  },
  "vin": {
    "label": "VIN",
    "format": "string"
  },
  "primaryDamage": {
    "label": "Primary damage",
    "format": "string"
  },
  "secondaryDamage": {
    "label": "Secondary damage",
    "format": "string"
  },
  "odometer": {
    "label": "Odometer",
    "format": "integer"
  },
  "odometerBrand": {
    "label": "Odometer brand",
    "format": "string"
  },
  "titleCode": {
    "label": "Title code",
    "format": "string"
  },
  "currentBid": {
    "label": "Current bid",
    "format": "number"
  },
  "buyItNowPrice": {
    "label": "Buy-it-now price",
    "format": "number"
  },
  "retailValue": {
    "label": "Retail value",
    "format": "number"
  },
  "auctionDate": {
    "label": "Auction date",
    "format": "string"
  },
  "saleLocation": {
    "label": "Sale location",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "color": {
    "label": "Color",
    "format": "string"
  },
  "engine": {
    "label": "Engine",
    "format": "string"
  },
  "transmission": {
    "label": "Transmission",
    "format": "string"
  },
  "drive": {
    "label": "Drive",
    "format": "string"
  },
  "fuel": {
    "label": "Fuel",
    "format": "string"
  },
  "bodyStyle": {
    "label": "Body style",
    "format": "string"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "imageCount": {
    "label": "Image count",
    "format": "integer"
  },
  "url": {
    "label": "Lot URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Copart Scraper [$0.7/1K💰] | Salvage Auctions | Bids & VINs](https://apify.com/ahmed_jasarevic/copart-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ahmed_jasarevic/copart-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ahmed_jasarevic/copart-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
