# Vintage Mercedes-Benz Inventory Data Export

**Use case:** 

Build a structured dataset of vintage Mercedes-Benz listings from classic.com. Covers W113 Pagoda, W111 Coupe, 300SL, W123, W124, G-Wagon, and all generations.

## Input

```json
{
  "searchUrl": "https://www.classic.com/search/?q=mercedes-benz",
  "make": "porsche",
  "model": "911",
  "max_items": 100,
  "fetch_details": true,
  "skip_seen": true,
  "mode": "auto",
  "proxyConfiguration": {
    "useApifyProxy": false,
    "proxyUrls": []
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "model_year": {
    "label": "Year",
    "format": "number"
  },
  "brand": {
    "label": "Make",
    "format": "text"
  },
  "model_family": {
    "label": "Model",
    "format": "text"
  },
  "model_variant": {
    "label": "Variant",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "price_currency": {
    "label": "Cur.",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [CLASSIC.COM Scraper — Global Classic Car Aggregator](https://apify.com/rastriq/classic-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rastriq/classic-com-scraper) to learn more, explore other use cases, and run it yourself.