autoscout24.be APIautoscout24.be ↗
Retrieve Belgian car listings from AutoScout24.be via API. Get brand, model, price, mileage, fuel type, and dealer details in structured JSON.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/dab9021a-1ab8-41ef-ac27-6c765b959304/scrape_listings?limit=10&search_term=BMW' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve car listings from AutoScout24.be. Returns results with details including brand, model, version, price, mileage, fuel type, dealer name, and listing URL.
No input parameters required.
{
"type": "object",
"fields": {
"listings": "array of car listing objects with brand, model, version, fuel_type, price, mileage, url, leads_range, and dealer_name",
"total_count": "integer total number of listings retrieved"
},
"sample": {
"data": {
"listings": [
{
"url": "https://www.autoscout24.be/nl/aanbod/peugeot-2008-1-2i-gps-airco-benzine-zilver-f46e69c1-1a64-4a30-96df-d1d502217012",
"brand": "Peugeot",
"model": "2008",
"price": "€ 3.590",
"mileage": "134.300 km",
"version": "1.2i-GPS-AIRCO",
"fuel_type": "Benzine",
"dealer_name": "MSR Cars",
"leads_range": "Some"
}
],
"total_count": 400
},
"status": "success"
}
}About the autoscout24.be API
The AutoScout24.be API exposes current vehicle listings from AutoScout24 Belgium through a single scrape_listings endpoint, returning up to 9 fields per listing including brand, model, version, price, mileage, fuel type, dealer name, listing URL, and leads range. It is suited for building price comparison tools, inventory trackers, or market analysis pipelines targeting the Belgian used and new car market.
What the API returns
The scrape_listings endpoint returns an array of car listing objects sourced from AutoScout24.be alongside a total_count integer reflecting the number of listings retrieved. Each object in the listings array carries nine fields: brand (e.g. BMW, Volkswagen), model, version (trim or variant label), fuel_type, price, mileage, url (direct link to the listing on AutoScout24.be), leads_range, and dealer_name.
Data coverage
The endpoint covers the Belgian AutoScout24 market specifically — autoscout24.be — which lists vehicles available in Belgium. Each listing record includes enough detail to compare asking prices across makes, segment inventory by fuel type, or attribute stock to individual dealers. The leads_range field provides an approximate demand signal per listing where available.
Inputs and filtering
The current API definition exposes no query parameters on scrape_listings. The endpoint retrieves the full available listing set without client-side filters for make, model, price range, or location. Any segmentation needs to be applied to the returned JSON array after the call.
- Track asking price trends for a specific brand or model across Belgian listings using the
priceandmodelfields. - Build a dealer inventory monitor by grouping listings by
dealer_nameand watching changes intotal_countover time. - Aggregate fuel-type distribution of current Belgian car inventory using the
fuel_typefield. - Power a used-car comparison table that surfaces
brand,model,version,mileage, andpriceside by side. - Feed a market research dashboard with mileage and price data segmented by vehicle brand for Belgium.
- Generate deep links to individual vehicle pages on AutoScout24.be using the
urlfield returned per listing.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does AutoScout24 provide an official developer API?+
Can I filter listings by make, price range, or location through the API?+
scrape_listings endpoint takes no input parameters, so it returns the full set of available listings without server-side filtering. Filtering by brand, price, fuel_type, or any other field must be done on the array returned in the response. You can fork this API on Parse and revise it to add filter parameters for make, location, or price range.Does the API include private seller listings or only dealer listings?+
dealer_name field is present on each listing object, which reflects dealer-attributed stock. Private seller listings may appear on AutoScout24.be but are not separately flagged in the current response schema. You can fork the API on Parse and revise it to surface or distinguish private seller records if that distinction matters for your use case.How fresh is the listing data?+
total_count values and listing sets.