Skip to Content

Cazoo Data Parser & API

Cazoo is a UK dealer marketplace — relaunched in April 2025 under the Motors network after the original instant-buy business nearly collapsed — and Carapis extracts its current dealer listing data through one REST API. Note: Cazoo no longer runs its old Carvana-style instant-buy model; it now operates as a dealer marketplace whose traffic is rebuilding, and Carapis serves its live inventory without you building a scraper.

CountryUK
TypePortal
OwnerMotors network (O3/Novum)
Vehicle typesused, dealer
Monthly visitsrebuilding
Active listingsdealer marketplace
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.cazoo.co.uk

What is Cazoo?

Cazoo was originally a Carvana-style online used-car retailer in the UK that bought, reconditioned and sold cars directly. After a near-collapse, the brand was acquired by Motors.co.uk’s owners (O3 Industries / Novum Capital) in June 2024 and relaunched as a dealer marketplace in April 2025 — it no longer does instant-buy retail. Its traffic is rebuilding under the new model.

Market Position

Cazoo today is a relaunched dealer marketplace within the Motors.co.uk network (O3 Industries / Novum Capital), not the standalone instant-buy retailer it once was. Its traffic is rebuilding after the brand transition, and its inventory now comes from dealers rather than its own reconditioned stock. For data buyers it is best understood as a Motors-network dealer source rather than a major independent marketplace.

Data Fields Available

Carapis extracts a structured record from each Cazoo listing:

  • Vehicle identity — make, model, trim, model year
  • Specification — fuel type, transmission, spec details
  • Condition — mileage
  • Pricing — listed price
  • Listing context — dealer info, location, photo gallery

As a dealer marketplace, Cazoo’s listings are well-structured, suitable for UK dealer-market pricing analysis.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "cazoo", "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 — UK dealer price and spec data feed market-pricing models for dealers.
  • Market research — track the relaunched Cazoo dealer marketplace. See market research.
  • Import / export — source UK dealer vehicles remotely. See import & export.

Frequently asked questions