AutoUncle Data Parser & API
AutoUncle is a pan-European car aggregator — it evaluates 8.6M+ live listings per day from 2,600+ sources across 14 EU countries, with 11M+ vehicles aggregated and a 100+-indicator valuation layer — and Carapis extracts its consolidated, valuation-enriched data through one REST API. Based in Aarhus, AutoUncle is both a parsing shortcut and a benchmark for the European market, and Carapis serves its data without you stitching together thousands of sources yourself.
| Country | Denmark |
|---|---|
| Type | Aggregator |
| Vehicle types | used, new |
| Monthly visits | high |
| Active listings | 11M+ aggregated (8.6M/day evaluated) |
| API access | Partial / limited API |
| Parse priority | ★★★★☆ |
| Official site | www.autouncle.com |
What is AutoUncle?
AutoUncle is a Danish car metasearch and valuation company (Aarhus) that aggregates used and new-car listings from 2,600+ sources across 14 EU countries — including Germany, Austria, Denmark, Italy, Spain, Poland, Portugal, Sweden, Finland, Romania, the UK, the Netherlands, Switzerland and France. It evaluates 8.6M+ live listings per day and applies 100+ valuation indicators, making it one of the most comprehensive aggregated views of the European car market.
Market Position
AutoUncle aggregates 11M+ vehicles and evaluates 8.6M+ listings per day from 2,600+ sources across 14 EU countries — a single, normalized, valuation-enriched view of the European market. For Carapis it serves a dual role: a structural shortcut/benchmark for pan-EU coverage, and a competitor signal worth tracking. Its 100+-indicator valuation layer adds derived fair-value analytics on top of the raw listings.
Data Fields Available
Carapis extracts a structured record from each AutoUncle result:
- Vehicle identity — make, model, model year
- Specification — fuel type, transmission
- Condition — mileage
- Pricing — listed price plus valuation (AutoUncle’s 100+-indicator fair-value layer)
- Listing context — source portal, location, photos
The valuation layer and source-portal attribution across 14 countries make AutoUncle uniquely useful for normalized, cross-border European pricing analysis.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "autouncle", "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 — AutoUncle’s 100+-indicator valuation powers residual-value models for dealers.
- Market research — one normalized feed gives a 14-country European view. See market research.
- Import / export — compare and price vehicles across European markets. See import & export.