Gaspedaal.nl Scraper
Pricing
from $3.00 / 1,000 results
Gaspedaal.nl Scraper
Scrape used cars from gaspedaal.nl. Paste a search URL from your browser, or use filters (make, model, price, mileage, year, fuel, body, transmission). Returns price, mileage, year, specs, dealer, and listing URL.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Marco Rodrigues
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
🚗 Gaspedaal.nl Scraper
Want to find the perfect used car, or analyze the Dutch automotive market? This scraper makes it super easy!
Paste an input_url from your browser once you've already filtered on Gaspedaal, or use structured filters (make, model, price, mileage, year, fuel, body, transmission, etc.) — structured filters work better for AI agents. When input_url is set it overrides the filters. Either way, you get up to 1000 used car listings from gaspedaal.nl with pricing, specs, and dealer details as CSV or JSON.
💡 Perfect for...
- Car Buyers: Monitor the market for the best deals on your next vehicle in the Netherlands.
- Dealerships: Keep an eye on competitors' pricing and inventory to stay competitive.
- Market Research: Analyze trends in the Dutch used car market (average prices, popular models, mileage vs. price).
- Data Analysts: Download clean, structured data for visualizations, dashboards, or predictive pricing models.
- 🤖 AI Agents: Power your autonomous agents with real-time Gaspedaal listings. Perfect for OpenClaw workflows and bots tracking specific vehicles.
- 📚 RAG Systems: Feed detailed vehicle specifications and pricing into Retrieval-Augmented Generation pipelines to answer complex queries about the automotive market.
- 🔗 AI Workflows: Integrate seamlessly with LangChain, AutoGPT, CrewAI, and other AI frameworks that need structured automotive data.
✨ Why you'll love this scraper
- 🔗 Input URL or Filters: Paste a Gaspedaal search URL (
input_url) if you already filtered in the browser, or use structured filters (better for AI agents).input_urlalways wins when set. - 🎯 Website-Matched Filters: Make, model, fuel, body, transmission, colour, price, mileage, and year use the same option values as gaspedaal.nl.
- ⚙️ Rich Listings: Extracts price, year, mileage, fuel, body, transmission, colour, dealer, and images out of the box.
- ⏱️ Sorting Options: Traverse results by relevance, newest, price, mileage, or year — same
srtcodes as on the site. - 🇳🇱 Built for the Netherlands: Covers Gaspedaal’s nationwide occasion inventory (~100 ads per page).
📦 What's inside the data?
For every single listing, you will get:
- Core Details:
id,title,url,image - Technical Specs:
make,model,fuel_type,body_type,transmission,colour,doors,engine,power,mileage,year,vehicle_configuration - Pricing:
price,price_currency - Dealer:
dealer_name,dealer_city,dealer_province,dealer_url - Context:
condition,availability
🛠️ Sort options
You can tell the scraper what order to read the listings in using the sort_by parameter (same srt values as Gaspedaal):
df-a– Most relevantdt-d– Newest ads (default)pr-a/pr-d– Price low→high / high→lowkm-a/km-d– Mileage low→high / high→lowbj-d/bj-a– Newest / oldest yearaf-a– Distance
🚀 Quick start
Option A — Input URL
- Open Gaspedaal zoeken, apply filters in the browser, copy the results URL — e.g.
https://www.gaspedaal.nl/bmw/3-serieorhttps://www.gaspedaal.nl/zoeken?pmax=10000. - Paste it into
input_url. - Set
max_carsand click Start.
Option B — Structured filters (better for AI agents)
- Leave
input_urlempty. - Pick make/model and optional filters from the dropdowns (same lists as on Gaspedaal).
- Choose
sort_by, setmax_cars(up to 1000). - Click Start and export CSV, Excel, or JSON when done.
Tech details for developers 🧑💻
Input Example (structured filters):
{"make": "bmw","model": "bmw::3-serie","max_price": "25000","min_year": "2018","fuel_type": "benzine","sort_by": "pr-a","max_cars": 100}
Input Example (URL override):
{"input_url": "https://www.gaspedaal.nl/bmw/3-serie?pmax=25000&srt=pr-a","max_cars": 500}
Output Example:
{"id": 126835043,"title": "BMW 3-serie - Touring 318i 2.0","url": "https://www.gaspedaal.nl/bmw/3-serie#126835043","image": "https://cdn.gaspedaal.nl/images/large/....jpg","make": "BMW","model": "3-serie","year": 2019,"mileage": 117108,"price": 18450,"price_currency": "EUR","fuel_type": "Benzine","transmission": "Automaat","body_type": "Stationwagon","colour": "Blauw","dealer_name": "Example Dealer","dealer_city": "Utrecht","dealer_province": "Utrecht"}
📋 Input reference (detailed)
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
input_url | string | No | — | Paste a Gaspedaal /zoeken or /{make}/{model} URL; overrides filters when set. Leave empty to use filters (better for AI agents). |
make | string enum | No | any | Vehicle make slug (e.g. bmw, volkswagen). |
model | string enum | No | any | Make + model as make::slug (e.g. bmw::3-serie). |
min_price / max_price | string enum | No | any | Price in EUR (pmin / pmax). |
min_year / max_year | string enum | No | any | Build year (bmin / bmax). |
min_mileage / max_mileage | string enum | No | any | Mileage in km (kmin / kmax). |
fuel_type | string enum | No | any | e.g. benzine, diesel, elektriciteit, hybride. |
body_type | string enum | No | any | e.g. hatchback, suv, stationwagen. |
transmission | string enum | No | any | automatisch or handmatig. |
colour | string enum | No | any | Colour slug (e.g. zwart, blauw). |
sort_by | string enum | No | dt-d | Gaspedaal srt code (see sort options). |
max_cars | integer | No | 50 | Maximum listings (1–1000). |
Notes on filters
- Prefer exact enum strings from the Apify input dropdowns (same values as gaspedaal.nl).
modelusesmake::slug(double colon), e.g.bmw::3-serie.- Prefer
/{make}/{model}or/zoeken?...URLs when pastinginput_url. - Gaspedaal SRPs typically return 100 ads per page.
- Listing URLs use the Gaspedaal deep-link form
/{make}/{model}#{id}. input_urlalways wins over filters when provided.