Carousell Motors Data Parser & API
Carousell Motors is the auto vertical of Carousell, a Singapore-based marketplace operating across SG, Taiwan, Hong Kong, Malaysia, Indonesia and the Philippines — and Carapis extracts its car listings, including private-seller and dealer ads, through one REST API. Owned by Carousell Group (which also runs Mudah.my and OneShift), Carousell Motors adds broad C2C supply across multiple SEA markets, served without you building or maintaining a scraper.
| Country | Singapore |
|---|---|
| Type | Marketplace |
| Owner | Carousell Group |
| Vehicle types | used, private |
| Monthly visits | broad (multi-vertical) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.carousell.sg |
What is Carousell Motors?
Carousell Motors is the vehicles vertical of Carousell, a major general marketplace founded in Singapore and operating across six markets including SG, TW, HK, MY, ID and PH. It lists used cars from private sellers and dealers, carrying the standard structured classified data — make, model, year, mileage, price, condition and seller contact. It is operated by Carousell Group, which also owns Mudah.my (Malaysia) and the OneShift auto media brand.
Market Position
Carousell Motors is part of one of Southeast Asia’s broadest marketplace footprints, with a multi-vertical presence spanning six markets. Its strength is private-seller (C2C) car supply across several countries from a single operator. As part of Carousell Group, it shares ownership with Mudah.my, so its regional C2C inventory complements the dealer-led portals of the Carsome / iCar Asia cluster.
Data Fields Available
Carapis extracts a complete structured record from each Carousell Motors car listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage, condition
- Pricing — listed price
- Listing context — seller info, location, photo gallery
Carousell Motors’ value is multi-market private-seller (C2C) coverage: it surfaces vehicles that never appear on dealer-only portals, across several countries, delivered as clean structured fields.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "carousell-motors", "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 — multi-market private-seller prices fill the C2C gap in residual-value models for dealers.
- Market research — track C2C supply and price trends across several SEA markets. See market research.
- Import / export — surface private-seller stock for sourcing. See import & export.