# Classic Car Listings Data from Classic.com

**Use case:** 

Scrape Classic.com for vintage car listings. Get structured data on prices, specifications, images, and seller details for market analysis.

## Input

```json
{
  "startUrl": "https://www.classic.com/search?result_type=listings",
  "keyword": "porsche 911",
  "results_wanted": 200,
  "max_pages": 10,
  "result_type": "listings",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "record_type": {
    "label": "Record Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "seller": {
    "label": "Seller",
    "format": "text"
  },
  "for_sale_count": {
    "label": "For Sale",
    "format": "number"
  },
  "listings_count": {
    "label": "Listings",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "listing_status": {
    "label": "Status",
    "format": "text"
  },
  "lot_date": {
    "label": "Lot Date",
    "format": "text"
  },
  "url": {
    "label": "Vehicle URL",
    "format": "link"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "image_urls": {
    "label": "Image URLs",
    "format": "text"
  },
  "photo_count": {
    "label": "Photo Count",
    "format": "number"
  },
  "result_page_image_count": {
    "label": "Result Page Images",
    "format": "number"
  },
  "missing_gallery_image_count": {
    "label": "Gallery Images Not Exposed",
    "format": "number"
  },
  "gallery_note": {
    "label": "Gallery Note",
    "format": "text"
  }
}
```

## About this Actor

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