Skip to Content
PlatformsWestern EuropeComparis (CarFinder)

Comparis Data Parser & API

Comparis CarFinder is Switzerland’s car metasearch — it aggregates around 175K listings from the major Swiss portals and acts as a fair-value price oracle — and Carapis extracts its consolidated feed through one REST API. As an aggregator with a price-rating layer, Comparis offers a single cross-portal view of the Swiss market plus fair-value signals, and Carapis serves it without you stitching together sources yourself.

CountrySwitzerland
TypeAggregator
Vehicle typesused, new
Monthly visitsmid
Active listings~175K aggregated
API accessNo public API (parse-only)
Parse priority★★☆☆☆
Official sitewww.comparis.ch

What is Comparis?

Comparis is a Swiss comparison platform; its CarFinder service is a vehicle metasearch that aggregates listings from the major Swiss car portals into one search. It indexes around 175K cars and adds a fair-value price assessment, helping buyers judge whether a listing is well-priced. This makes it both a cross-portal index of Swiss inventory and a derived price-rating source.

Market Position

Comparis CarFinder aggregates ~175K listings from Switzerland’s main car portals (including AutoScout24.ch) and functions as a fair-value price oracle for the Swiss market. Its value for data buyers is twofold: a single cross-portal view of Swiss inventory, and a derived price-rating layer that is itself a resellable signal on top of the raw listings.

Data Fields Available

Carapis extracts a structured record from each Comparis CarFinder result:

  • Vehicle identity — make, model, model year
  • Specification — fuel type, transmission
  • Condition — mileage
  • Pricing — listed price plus fair-value rating (Comparis’s price-position signal)
  • Listing contextsource portal, location, photos

The fair-value rating and source-portal attribution are what make Comparis distinctive: it tells you both where a car is listed and how its price compares to the Swiss market.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "comparis", "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 — Comparis’s fair-value ratings power residual-value models for dealers.
  • Market research — one aggregated feed gives a cross-portal view of Swiss supply. See market research.
  • Import / export — scan and price-benchmark Swiss inventory in one place. See import & export.

Frequently asked questions