Skip to Content
PlatformsWestern Europe2dehands / 2ememain

2dehands Data Parser & API

2dehands (Dutch) and 2ememain (French) are Belgium’s leading classifieds platform — carrying deep private and dealer car listings across Flanders and Wallonia — and Carapis extracts the data through one REST API. Part of the Adevinta-lineage classifieds family, 2dehands surfaces Belgian private-seller vehicles missing from dealer portals, and Carapis serves them without you building a scraper.

CountryBelgium
TypeClassifieds
OwnerAdevinta
Vehicle typesused, private, dealer
Monthly visitsmid-high
Active listingslarge
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.2dehands.be

What is 2dehands?

2dehands / 2ememain is the dominant general-classifieds platform in Belgium, branded 2dehands.be for Dutch-speaking Flanders and 2ememain.be for French-speaking Wallonia. Owned by Adevinta, it carries a large vehicles category covering used cars from both private sellers and dealers, making it the primary source of Belgian C2C car data.

Market Position

2dehands / 2ememain is Belgium’s leading classifieds destination, part of the same Adevinta-lineage family as Marktplaats and Leboncoin. Its standout asset is private/C2C car inventory across both Belgian language regions — vehicles not found on dealer-only sites like AutoScout24.be — giving the fullest view of Belgian consumer-level used-car supply.

Data Fields Available

Carapis extracts a structured record from each 2dehands car listing:

  • Vehicle identity — make, model, model year
  • Specification — fuel type, transmission
  • Condition — mileage
  • Pricing — listed price
  • Listing contextseller type (private vs dealer), location, photo gallery

The private-seller depth and seller-type flag make 2dehands valuable for analysing the C2C half of the Belgian market across both language regions.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "2dehands", "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 Belgian supply. See market research.
  • Pricing intelligence — private and dealer asking prices feed market-pricing models for dealers.
  • Import / export — source Belgian vehicles, including private stock, remotely. See import & export.

Frequently asked questions