Mudah.my Data Parser & API
Mudah.my is Malaysia’s leading general classifieds site, carrying around 85,000 car listings — and Carapis extracts its full car vertical, including private-seller and dealer ads with price, mileage and spec, through one REST API. Owned by Carousell Group, Mudah.my adds the private-seller (C2C) supply that complements dealer-led portals, and Carapis serves it without you building or maintaining a scraper.
| Country | Malaysia |
|---|---|
| Type | Classifieds |
| Owner | Carousell Group |
| Vehicle types | used, private |
| Monthly visits | high (general classifieds) |
| Active listings | ~85K cars |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.mudah.my |
What is Mudah.my?
Mudah.my is one of Malaysia’s largest general classifieds platforms, with a substantial automotive vertical of roughly 85K car listings spanning private sellers and dealers. It carries the standard structured classified data — make, model, year, mileage, price, condition, spec and seller contact. It is part of Carousell Group, the regional marketplace operator.
Market Position
Mudah.my is a top general-classifieds destination in Malaysia, with around 85K active car listings — its strength is private-seller (C2C) supply that dealer-focused portals like Carlist.my under-cover. As part of Carousell Group, it shares a regional marketplace lineage with Carousell Motors. For full coverage of the Malaysian used-car market, Mudah.my’s private-seller inventory pairs naturally with the dealer inventory on Carlist.my.
Data Fields Available
Carapis extracts a complete structured record from each Mudah.my car listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage, condition
- Pricing — listed price
- Listing context — seller info, location, photo gallery
Mudah.my’s value is private-seller (C2C) coverage: it surfaces vehicles and price points that never appear on dealer-only portals, delivered as clean structured fields.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "mudah-my", "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 — private-seller price points fill the C2C gap in residual-value models for dealers.
- Market research — track Malaysian private-seller supply and price trends. See market research.
- Import / export — surface private-seller stock for sourcing. See import & export.