# Scrape car listings in the Netherlands

**Use case:** 

Scrape car listings from Gaspedaal.nl, a Dutch car search aggregator. Structured listing data with prices. Pay per result.

## Input

```json
{
  "keyword": "audi",
  "brand": "",
  "model": "",
  "requestDelayMs": 1000,
  "respectRobotsTxt": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "startUrls": [],
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "priceEur": {
    "label": "Price (€)",
    "format": "number"
  },
  "mileageKm": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "fuelType": {
    "label": "Fuel",
    "format": "text"
  },
  "transmissionType": {
    "label": "Transmission",
    "format": "text"
  },
  "bodyType": {
    "label": "Body Type",
    "format": "text"
  },
  "color": {
    "label": "Color",
    "format": "text"
  },
  "numberOfDoors": {
    "label": "Doors",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "sellerName": {
    "label": "Dealer Name",
    "format": "text"
  },
  "sellerCity": {
    "label": "City",
    "format": "text"
  },
  "sellerRegion": {
    "label": "Region",
    "format": "text"
  },
  "vehicleConfiguration": {
    "label": "Configuration",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "text"
  },
  "sourceListingUrl": {
    "label": "Source Listing URL",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "contentHash": {
    "label": "Hash",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Gaspedaal.nl Car Listings Scraper](https://apify.com/unfenced-group/gaspedaal-nl-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/gaspedaal-nl-scraper) to learn more, explore other use cases, and run it yourself.