CarGurus UK Data Parser & API
CarGurus UK is a major British car portal — known for its fair-value deal ratings on every listing — and Carapis extracts its full inventory and price-rating data through one REST API. As the UK arm of the US CarGurus group (which also owns PistonHeads), it adds a derived value-rating layer on top of raw listings, and Carapis serves it without you building a scraper.
| Country | UK |
|---|---|
| Type | Portal |
| Vehicle types | used, new, dealer |
| Monthly visits | high |
| Active listings | large |
| API access | Partial / limited API |
| Parse priority | ★★★☆☆ |
| Official site | www.cargurus.co.uk |
What is CarGurus UK?
CarGurus UK is the British site of the US-based CarGurus group, a major car portal carrying used and new vehicles from dealers. Its signature feature is a deal rating on each listing — Great/Good/Fair/Overpriced — derived from market analysis. CarGurus also owns the UK enthusiast portal PistonHeads.
Market Position
CarGurus UK is a high-traffic UK portal that competes with AutoTrader UK and Motors.co.uk. Its standout asset is its deal-rating layer — a fair-value assessment computed across the market and attached to every listing. That derived analytics signal is itself resellable on top of the raw inventory, putting CarGurus UK alongside Comparis and AutoUncle as a price-intelligence source rather than just a listings feed.
Data Fields Available
Carapis extracts a structured record from each CarGurus UK listing:
- Vehicle identity — make, model, trim, model year
- Specification — fuel type, transmission, spec details
- Condition — mileage
- Pricing — listed price plus deal rating (CarGurus’ Great/Good/Fair/Overpriced value signal)
- Listing context — dealer info, location, photo gallery
The deal rating is what sets CarGurus apart: a fair-value analytics layer, not just an asking price, valuable for pricing-intelligence buyers.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "cargurus-uk", "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 — CarGurus’ deal ratings power residual-value models for dealers.
- Market research — track UK dealer inventory with fair-value context. See market research.
- Import / export — price-benchmark UK vehicles remotely. See import & export.