# duPont Registry Porsche Listings Scraper

**Use case:** 

Scrape duPont Registry Porsche listings with make, model, year, price, mileage, images, and listing URL. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.dupontregistry.com/autos/results/porsche",
  "make": "Ferrari",
  "model": "Roma Spider",
  "maxItems": 25,
  "zipCode": "90210",
  "radius": "Any",
  "priceMin": 100000,
  "priceMax": 1000000,
  "yearMin": 2020,
  "yearMax": 2024,
  "mileageMin": 0,
  "mileageMax": 10000,
  "condition": "Any",
  "transmissions": [
    "Manual",
    "Automatic"
  ],
  "drivetrains": [
    "RWD",
    "AWD"
  ],
  "sellerTypes": [
    "Dealer"
  ],
  "exteriorColors": [
    "Red",
    "Blue",
    "Black"
  ],
  "interiorColors": [
    "Black",
    "Tan",
    "Red"
  ],
  "includeImages": true,
  "includeVideos": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image URL",
    "format": "url"
  },
  "id": {
    "label": "Vehicle ID",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "currency"
  },
  "priceText": {
    "label": "Price Text",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "url"
  },
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "dealerName": {
    "label": "Dealer Name",
    "format": "text"
  },
  "dealerPhone": {
    "label": "Dealer Phone",
    "format": "text"
  },
  "dealerEmail": {
    "label": "Dealer Email",
    "format": "text"
  },
  "dealerAddress": {
    "label": "Dealer Address",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "engine": {
    "label": "Engine",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel Type",
    "format": "text"
  },
  "exteriorColor": {
    "label": "Exterior Color",
    "format": "text"
  },
  "interiorColor": {
    "label": "Interior Color",
    "format": "text"
  },
  "bodyStyle": {
    "label": "Body Style",
    "format": "text"
  },
  "drivetrain": {
    "label": "Drivetrain",
    "format": "text"
  },
  "stockNumber": {
    "label": "Stock Number",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "listingDate": {
    "label": "Listing Date",
    "format": "datetime"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "financingOffer": {
    "label": "Financing Offer",
    "format": "text"
  },
  "preQualificationLink": {
    "label": "Pre-Qualification Link",
    "format": "url"
  },
  "checkAvailabilityLink": {
    "label": "Check Availability Link",
    "format": "url"
  },
  "features": {
    "label": "Features",
    "format": "text"
  },
  "specifications": {
    "label": "Specifications",
    "format": "text"
  },
  "images": {
    "label": "Images",
    "format": "text"
  },
  "videos": {
    "label": "Videos",
    "format": "text"
  },
  "documents": {
    "label": "Documents",
    "format": "text"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [duPont Registry Scraper](https://apify.com/parseforge/dupont-registry-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/dupont-registry-scraper) to learn more, explore other use cases, and run it yourself.