AutoTrack Data Parser & API
AutoTrack is a Dutch dealer-focused car portal — strong on BOVAG-affiliated dealers and lease-return vehicles — and Carapis extracts its full listing data through one REST API. Its dealer and lease-return focus makes its listings well-structured and spec-complete, and Carapis serves them without you building a Dutch-market scraper.
| Country | Netherlands |
|---|---|
| Type | Portal |
| Vehicle types | used, new, dealer |
| Monthly visits | mid |
| Active listings | mid (lease returns, BOVAG) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.autotrack.nl |
What is AutoTrack?
AutoTrack is a Netherlands car portal oriented around dealer inventory, with a notable share of lease-return vehicles and listings from BOVAG-affiliated dealers. It carries used and new cars and complements the C2C-heavy Marktplaats by offering cleaner, dealer-vetted Dutch inventory.
Market Position
AutoTrack sits mid-traffic among Dutch car sites, but its dealer and lease-return focus gives it a distinct role: where Marktplaats leads on private/C2C volume, AutoTrack is stronger on structured dealer inventory and ex-lease vehicles (often BOVAG-quality). That makes it a reliable source for the dealer slice of the Dutch market and a complement to the broader classifieds.
Data Fields Available
Carapis extracts a structured record from each AutoTrack listing:
- Vehicle identity — make, model, trim, model year
- Specification — fuel type, transmission, spec details
- Condition — mileage
- Pricing — listed price
- Listing context — dealer info, location, photo gallery
AutoTrack’s dealer focus means its listings are well-structured and spec-complete, ideal for Dutch dealer-market pricing analysis.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "autotrack", "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
- Pricing intelligence — clean dealer and ex-lease price data feed market-pricing models for dealers.
- Market research — track the Dutch dealer and lease-return market. See market research.
- Import / export — source vetted Dutch dealer vehicles remotely. See import & export.