Collecting Cars Data Parser & API
Collecting Cars is a UK-based global online auction for classic and enthusiast vehicles — and Carapis extracts its full lot data, including detailed provenance, options, modifications, photos and sold-price history, through one REST API. Operating across multiple regions with international buyers, Collecting Cars publishes final results that make it a strong source for enthusiast and classic valuation data outside the US-centric platforms.
| Country | UK |
|---|---|
| Type | Auction |
| Vehicle types | classic, auction, moto |
| Monthly visits | mid-tier (est.) |
| Active listings | daily lots |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | collectingcars.com |
What is Collecting Cars?
Collecting Cars is a UK-headquartered online auction platform for classic, enthusiast and collectible vehicles and motorcycles, serving a global buyer base. It runs daily curated lots with thorough descriptions, photo sets and public bidding. As a non-US-anchored enthusiast auction, it broadens collector-market coverage into the UK, Europe, the Middle East and Asia-Pacific.
Market Position
Collecting Cars is among the established global enthusiast auction houses (traffic mid-tier, est.), complementing the US-centric Bring a Trailer and Cars & Bids with strong UK/European and Asia-Pacific reach. Online collector auctions now move 50K+ cars/yr (~$2.5B), surpassing live auctions (Hagerty, 2025). Its public, well-documented results make it valuable for building a geographically broader picture of collector-car prices and provenance.
Data Fields Available
Carapis extracts a complete structured record from each Collecting Cars lot:
- Vehicle identity — make, model, model year, VIN
- Condition & history — mileage, provenance (ownership/history notes), modifications, factory options
- Auction — final bid / sold price, reserve status, auction end date (the standout sold-price history)
- Listing context — seller type, location, deep photo gallery
Provenance, modifications and public sold-price results are what make Collecting Cars’ data valuable for collector valuation across multiple regions — delivered as structured fields rather than free text.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "collecting-cars", "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 — public sold-price results power collector valuation models for dealers and specialists across UK/EU markets.
- Market research — track enthusiast and classic segment trends beyond US platforms. See market research.
- Import / export — provenance and spec depth help cross-border collectors source rare vehicles. See import & export.