AutoScout24.ch Data Parser & API
AutoScout24.ch is Switzerland’s #1 car marketplace — the leading Swiss auto portal — and Carapis extracts its full dealer and spec-rich listing data through one REST API. Owned by Hellman & Friedman as part of the wider AutoScout24 group, it carries the cleanest structured Swiss car data, and Carapis serves it without you fighting its Akamai anti-bot defences.
| Country | Switzerland |
|---|---|
| Type | Portal |
| Owner | Hellman & Friedman |
| Vehicle types | used, new, dealer, moto |
| Monthly visits | high (CH #1) |
| Active listings | large |
| API access | Partial / limited API |
| Parse priority | ★★★★☆ |
| Official site | www.autoscout24.ch |
What is AutoScout24.ch?
AutoScout24.ch is the Swiss site of the AutoScout24 group, owned by Hellman & Friedman. It is the #1 car marketplace in Switzerland, listing used and new cars and motorcycles from dealers across the country. As part of the pan-European AutoScout24 platform, it shares the same rich field structure, making it the primary source of structured Swiss car data.
Market Position
AutoScout24.ch is the leading Swiss auto marketplace, aggregated in turn by price-comparison services like Comparis CarFinder. Owned by Hellman & Friedman through the AutoScout24 group, it benefits from the same data model as the group’s 18-country platform — so Swiss listings arrive in the same consistent shape as German, Italian and Spanish ones. That makes it the cleanest entry point to the Swiss market and a natural complement to the broader AutoScout24 dataset.
Data Fields Available
Carapis extracts a structured record from each AutoScout24.ch listing:
- Vehicle identity — make, model, trim, model year, first registration
- Specification — power (kW/PS), fuel type, transmission, spec details
- Condition — mileage
- Pricing — listed price
- Listing context — dealer info, location, photo gallery
The Swiss spec depth (power, first-registration) matches the wider AutoScout24 group structure, ideal for cross-border DACH pricing analysis.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "autoscout24-ch", "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 — Swiss dealer price and spec data power market-pricing models for dealers.
- Market research — track the Swiss used and new-car market. See market research.
- Import / export — compare Swiss pricing against neighbouring DACH markets. See import & export.