Gaspedaal.nl Data Parser & API
Gaspedaal.nl is a Dutch car metasearch — it aggregates listings from the major Netherlands car portals into one place — and Carapis extracts its consolidated feed through one REST API. As an aggregator it offers a single, cross-portal view of the Dutch market, and Carapis serves it without you stitching together multiple sources yourself.
| Country | Netherlands |
|---|---|
| Type | Aggregator |
| Vehicle types | used, dealer |
| Monthly visits | mid |
| Active listings | aggregates NL portals |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.gaspedaal.nl |
What is Gaspedaal.nl?
Gaspedaal.nl is a metasearch engine for cars in the Netherlands. Rather than hosting its own listings, it aggregates inventory from the major Dutch portals (such as Marktplaats, AutoTrack and AutoScout24.nl), giving buyers one search across the market. This makes it a convenient cross-portal index of Dutch used-car supply.
Market Position
Gaspedaal.nl sits mid-traffic but plays an outsized structural role: as an aggregator it consolidates the major Dutch car portals into a single feed, offering a cross-source view of the Netherlands market in one place. For data buyers it functions as a shortcut to the breadth of Dutch inventory and as a useful benchmark of which portals carry which vehicles.
Data Fields Available
Carapis extracts a structured record from each Gaspedaal.nl result:
- Vehicle identity — make, model, model year
- Specification — fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Listing context — source portal (which underlying site the listing came from), location, photos
The source-portal attribution is what makes Gaspedaal especially useful: it tells you where each vehicle is listed across the Dutch market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "gaspedaal-nl", "limit": 20},
headers={"Authorization": f"Bearer {API_KEY}"},
)
for car in resp.json()["results"]:
print(car["make"], car["model"], car["year"], car["price"])Get an API key at my.carapis.com and see the full API reference. Pricing is on the pricing page.
Use Cases
- Market research — one aggregated feed gives a cross-portal view of Dutch supply. See market research.
- Pricing intelligence — compare the same vehicle across Dutch portals for dealers.
- Import / export — scan the breadth of Dutch inventory in one place. See import & export.