# Used BMW prices across the UK on AutoTrader

**Use case:** 

Scrape used BMW listings from AutoTrader.co.uk. Ideal for car buyers comparing BMW prices, dealers tracking competitor inventory, and market analysts.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.autotrader.co.uk/car-search?advertising-location=at_cars&make=BMW&postcode=SW1A+1AA&sort=relevance"
    }
  ],
  "maxItems": 100,
  "includeListingDetails": true,
  "maxConcurrency": 5,
  "maxRequestRetries": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "id": {
    "label": "Advert ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price (£)",
    "format": "number"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "colour": {
    "label": "Colour",
    "format": "text"
  },
  "mileage.mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "specification.fuel": {
    "label": "Fuel",
    "format": "text"
  },
  "specification.transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "specification.bodyType": {
    "label": "Body Type",
    "format": "text"
  },
  "sellerName": {
    "label": "Dealer",
    "format": "text"
  },
  "sellerLocation": {
    "label": "Location",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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