AutoScout24 APIautoscout24.be ↗
Retrieve Belgian car listings from AutoScout24.be via API. Get brand, model, price, mileage, fuel type, and dealer details in structured JSON.
What is the AutoScout24 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.
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'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace autoscout24-be-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: AutoScout24 BE — retrieve and inspect Belgian car listings."""
from parse_apis.autoscout24_be_scraper_api import AutoScout24, ListingsUnavailable
client = AutoScout24()
# Fetch listings from AutoScout24.be — limit caps total items iterated.
try:
listing = client.listings.list(limit=1).first()
except ListingsUnavailable as exc:
print(f"Listings blocked: {exc}")
listing = None
if listing:
print(listing.brand, listing.model, listing.price, listing.mileage)
# Iterate a small batch of listings and inspect fields.
for car in client.listings.list(limit=5):
print(car.brand, car.model, car.fuel_type, car.dealer_name)
print("exercised: listings.list / field access / typed error catch")
Retrieve all available car listings from AutoScout24.be. Scrapes up to 20 pages (400 listings) with details including brand, model, version, price, mileage, fuel type, dealer name, interest level, and listing URL. No input parameters — returns the current general inventory. Each call may take 20-40 seconds due to multi-page scraping.
No input parameters required.
{
"type": "object",
"fields": {
"listings": "array of car listing objects",
"total_count": "integer total number of listings retrieved"
},
"sample": {
"data": {
"listings": [
{
"url": "https://www.autoscout24.be/nl/aanbod/volvo-c30-c30-1-6-d2-r-design-diesel-wit-cat_ma73mo18912-e510aa9a-c912-4c86-b44e-44b89c0292dd",
"brand": "Volvo",
"model": "C30",
"price": "€ 4.000",
"mileage": "143.777 km",
"version": "C30 1.6 D2 R-design",
"fuel_type": "Diesel",
"dealer_name": "AUTO CONTINENTAL",
"leads_range": "Some"
}
],
"total_count": 400
},
"status": "success"
}
}About the AutoScout24 API
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.
The AutoScout24 API is a managed, monitored endpoint for autoscout24.be — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when autoscout24.be changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official autoscout24.be API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.