carsales.com.au Data Parser & API
carsales.com.au is Australia’s #1 car marketplace — it handles 100M+ vehicle searches a month and draws roughly 11.2M visits — and Carapis extracts its full dealer, private, new and used listing data through one REST API. It is the flagship asset of CAR Group, the same parent that owns Encar (Korea), Webmotors (Brazil) and Chileautos (Chile), so the structured listing model Carapis serves here mirrors several other markets.
| Country | Australia |
|---|---|
| Type | Portal |
| Owner | CAR Group |
| Vehicle types | used, new, dealer, private, moto, commercial |
| Monthly visits | ~11.2M (Jan 2025, SimilarWeb-style) |
| Active listings | — (100M+ searches/mo) |
| API access | Partial / limited API |
| Parse priority | ★★★★★ |
| Official site | www.carsales.com.au |
What is carsales.com.au?
carsales.com.au is the leading automotive classifieds and dealer portal in Australia, operated by CAR Group Limited (formerly carsales.com Ltd, renamed 2023). It aggregates new and used vehicles from licensed dealers and private sellers across passenger cars, motorcycles and commercial vehicles, and is the dominant destination for Australian car buyers — with 100M+ vehicle searches per month and an estimated ~11.2M monthly visits (Jan 2025).
Market Position
carsales is the #1 automotive marketplace in Australia, reporting 100M+ vehicle searches per month and roughly 11.2M monthly visits. Its parent, CAR Group, runs a single corporate data model across five countries: it wholly owns carsales (Australia), Encar (South Korea), Trader Interactive (US — RV/powersports/commercial) and Chileautos (Chile), and holds a 70% majority of Webmotors (Brazil). That consolidation means the schema Carapis parses on carsales — make, variant, price, dealer, photos — transfers directly to several other Carapis platforms. Its main domestic rivals are the Gumtree Group network (Gumtree, CarsGuide, Autotrader AU).
Data Fields Available
Carapis extracts a complete structured record from each carsales listing:
- Vehicle identity — make, model, variant/badge, build year, body type, fuel type, transmission, drivetrain
- Condition & pricing — odometer (mileage), listed (drive-away) price
- Specification — factory options and feature lists
- Registration — VIN and rego where published
- Listing context — dealer / private seller, location (state/suburb), full photo gallery
The dealer + private split and the consistent CAR Group schema make carsales the anchor dataset for Australian pricing intelligence and inventory tracking.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "carsales-com-au", "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 — the largest AU inventory pool powers residual-value and market-pricing models for dealers.
- Market research — track make/model mix, price and mileage trends across the Australian market. See market research.
- Import / export — benchmark Australian retail prices against source markets. See import & export.