# Scrape Mercedes-Benz Listings in London from Autotrader

**Use case:** 

Extract detailed listings of Mercedes-Benz cars in London. Get prices, specs, dealer information, and more from Autotrader UK.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.autotrader.co.uk/car-search?channel=cars&make=Mercedes-Benz&postcode=EC1A1BB"
    }
  ],
  "maxListings": 100,
  "fetchDetails": true,
  "fetchSellerProfile": true,
  "fetchSellerReviews": false,
  "maxReviewsPerSeller": 10,
  "fetchSellerOtherListings": false,
  "maxOtherListingsPerSeller": 10,
  "attachSellerToListings": false,
  "fetchDeliveryOptions": false,
  "fetchFinanceQuotes": false,
  "financeDeposit": 1000,
  "financeTermMonths": 48,
  "financeAnnualMileage": 10000
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "advertId": {
    "label": "Advert ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "priceAmount": {
    "label": "Price (numeric)",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage",
    "format": "text"
  },
  "registration": {
    "label": "Registration",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller type",
    "format": "text"
  },
  "dealerId": {
    "label": "Dealer ID",
    "format": "text"
  },
  "postcode": {
    "label": "Postcode",
    "format": "text"
  },
  "sellerContact.name": {
    "label": "Seller name",
    "format": "text"
  },
  "sellerContact.email": {
    "label": "Seller email",
    "format": "text"
  },
  "sellerContact.primaryPhone": {
    "label": "Seller phone",
    "format": "text"
  },
  "sellerContact.website": {
    "label": "Seller website",
    "format": "link"
  },
  "sellerContact.address.town": {
    "label": "Seller town",
    "format": "text"
  },
  "sellerProfile.name": {
    "label": "Dealer name",
    "format": "text"
  },
  "sellerProfile.distanceMiles": {
    "label": "Dealer distance (mi)",
    "format": "number"
  },
  "sellerProfile.reviewSummary.totalReviews": {
    "label": "Dealer reviews",
    "format": "number"
  },
  "sellerProfile.reviewSummary.averageRating": {
    "label": "Dealer rating",
    "format": "number"
  },
  "dealerReviewRating": {
    "label": "Feed review rating",
    "format": "number"
  },
  "vehicleLocation": {
    "label": "Location",
    "format": "text"
  },
  "sourceUrl": {
    "label": "URL",
    "format": "link"
  },
  "primaryImage": {
    "label": "Image",
    "format": "image"
  },
  "hasDigitalRetailing": {
    "label": "Digital retailing",
    "format": "boolean"
  },
  "enrichmentErrors": {
    "label": "Enrichment errors",
    "format": "array"
  },
  "processingError": {
    "label": "Processing error",
    "format": "text"
  }
}
```

## About this Actor

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