Carwow Data Parser & API
Carwow is a UK, German and Spanish car marketplace — combining new-car lead generation with a “sell my car” auction — and Carapis extracts its listing and offer data through one REST API. Carwow blends dealer offers, used inventory and consumer auctions across three markets, and Carapis serves the data without you building a scraper.
| Country | UK |
|---|---|
| Type | Marketplace |
| Vehicle types | new, used, dealer |
| Monthly visits | high |
| Active listings | mixed (lead-gen + sell-my-car) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.carwow.co.uk |
What is Carwow?
Carwow is a car-buying and selling marketplace operating in the UK, Germany and Spain. It started as a new-car lead-generation platform connecting buyers with dealer offers, and has expanded into used cars and a “sell my car” auction model. In 2024 it acquired Autovia (Auto Express, evo, Carbuyer, DrivingElectric) and raised $52M to expand across the UK, Germany and Spain.
Market Position
Carwow occupies a hybrid position: new-car lead-gen plus a “sell my car” auction, rather than a pure listings portal, operating across the UK, Germany and Spain. Its 2024 Autovia acquisition and $52M raise signalled expansion ambitions. For data buyers, Carwow’s value lies in its dealer-offer and auction signals across three markets — a different angle from straightforward classified inventory.
Data Fields Available
Carapis extracts a structured record from each Carwow listing:
- Vehicle identity — make, model, trim, model year
- Specification — fuel type, transmission, spec details
- Condition — mileage
- Pricing — listed price / dealer offer
- Listing context — dealer info, location, photo gallery
Carwow’s mix of new-car offers, used inventory and auction data makes it useful for understanding dealer pricing across the UK, Germany and Spain.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "carwow", "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 — dealer-offer and auction data feed market-pricing models for dealers.
- Market research — track new-car offers and used pricing across the UK, Germany and Spain. See market research.
- Import / export — compare dealer offers across three markets. See import & export.