Marktplaats Data Parser & API
Marktplaats is the Netherlands’ dominant general classifieds site — with 1M+ unique car shoppers per month — and its heavy automotive volume is extracted by Carapis through one REST API. Part of the eBay-classifieds lineage now in the Adevinta/Prosus orbit, Marktplaats carries the richest private and dealer car inventory in the Dutch market, and Carapis serves it without you building a scraper.
| Country | Netherlands |
|---|---|
| Type | Classifieds |
| Vehicle types | used, private, dealer, moto, commercial |
| Monthly visits | high (1M+ unique/mo car shoppers) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.marktplaats.nl |
What is Marktplaats?
Marktplaats is the leading general-classifieds platform in the Netherlands, with a very large vehicles category spanning cars, motorcycles and commercial vehicles from both private sellers and dealers. Descended from the eBay classifieds business and now in the Adevinta/Prosus orbit, it attracts 1M+ unique car shoppers per month, making it the dominant source of Dutch private-seller car data.
Market Position
Marktplaats is the Netherlands’ dominant classifieds destination, with 1M+ unique monthly car shoppers and a vehicles category that anchors the Dutch used-car market. Alongside dealer-focused portals such as AutoTrack and AutoScout24.nl, Marktplaats stands out for its private/C2C inventory — vehicles listed directly by owners — giving the fullest view of Dutch consumer-level supply and pricing.
Data Fields Available
Carapis extracts a structured record from each Marktplaats car listing:
- Vehicle identity — make, model, model year
- Specification — fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Listing context — seller type (private vs dealer), location, photo gallery
The private-seller depth and seller-type flag make Marktplaats valuable for analysing the C2C half of the Dutch market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "marktplaats", "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 — private-seller inventory reveals the C2C side of Dutch supply. See market research.
- Pricing intelligence — private and dealer asking prices feed market-pricing models for dealers.
- Import / export — source Dutch vehicles, including private stock, remotely. See import & export.