Discover/AutoScout24 API
live

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.

Endpoint health
verified 7d ago
scrape_listings
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

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.

Try it

No input parameters required.

api.parse.bot/scraper/dab9021a-1ab8-41ef-ac27-6c765b959304/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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")
All endpoints · 1 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
7d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track asking price trends for a specific brand or model across Belgian listings using the price and model fields.
  • Build a dealer inventory monitor by grouping listings by dealer_name and watching changes in total_count over time.
  • Aggregate fuel-type distribution of current Belgian car inventory using the fuel_type field.
  • Power a used-car comparison table that surfaces brand, model, version, mileage, and price side 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 url field returned per listing.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does AutoScout24 provide an official developer API?+
AutoScout24 offers a partner API for professional dealers through its AutoScout24 Developer Portal (autoscout24.com/developers). Access requires a dealer or partner account and formal approval. The Parse API does not require any AutoScout24 credentials on your end.
Can I filter listings by make, price range, or location through the API?+
Not currently. The 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?+
The 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?+
The API retrieves listings from AutoScout24.be at the time of the request, so results reflect inventory as it appears on the site when you call the endpoint. AutoScout24.be listing inventory changes continuously as vehicles are added or sold, so repeated calls may return different total_count values and listing sets.
Does the API return vehicle photos or full specification sheets?+
No image URLs or extended technical specifications (engine displacement, transmission type, body style, etc.) are included in the current response. Each listing returns the nine fields described above. You can fork this API on Parse and revise it to capture photo URLs or additional spec fields from individual listing pages.
Page content last updated . Spec covers 1 endpoint from autoscout24.be.
Related APIs in AutomotiveSee all →
autoscout24.com API
Search millions of car listings on AutoScout24 and filter results by make, model, price, mileage, and other vehicle specifications. Explore vehicle taxonomy and aggregated data to discover market trends and compare automotive options across Europe's largest car marketplace.
autoscout24.cz API
Search and browse car listings from AutoScout24.cz to find detailed vehicle information including specifications, pricing, and availability. Access comprehensive car data across multiple listings with filtering and taxonomy options to discover the perfect vehicle match.
autoscout24.it API
Search for used and new cars across AutoScout24 Italy's inventory, view detailed listing information, and browse dealer profiles. Filter vehicles by make and model to find exactly what you're looking for in the Italian automotive market.
autotrader.ca API
Search vehicle listings on AutoTrader.ca and retrieve detailed information including specifications, pricing, mileage, and seller contact details. Compare listings across makes, models, and locations to support vehicle research and purchasing decisions.
autotrader.co.za API
Search and access comprehensive vehicle listings from South Africa's AutoTrader with pricing, specifications, location details, and seller information. Get everything you need to compare cars and make informed purchasing decisions, though direct seller phone numbers aren't available due to security protections.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
autotrader.com.au API
Search and browse car listings on AutoTrader Australia with filters by make and model, then view detailed information about specific vehicles. Find available cars with full specs and compare options across thousands of listings using customizable filters.