Carmudi Data Parser & API
Carmudi is a multi-country car portal operating across the Philippines, Indonesia and Vietnam — and Carapis extracts its full used, new and dealer listing data, including price, mileage, spec and dealer details, through one REST API. Owned by Carsome via iCar Asia, Carmudi shares ownership with the dominant national portals across the region, so a single Carapis approach reaches several SEA markets at once.
| Country | Philippines |
|---|---|
| Type | Portal |
| Owner | iCar Asia / Carsome |
| Vehicle types | used, new, dealer |
| Monthly visits | moderate |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.carmudi.com.ph |
What is Carmudi?
Carmudi is a car marketplace operating in the Philippines, Indonesia and Vietnam, listing used, new and dealer vehicles. It carries the standard structured classified data — make, model, year, mileage, price, spec and dealer contact. It is owned by iCar Asia, which is in turn owned by Carsome Group following Carsome’s acquisition of the iCar Asia portals.
Market Position
Carmudi is a multi-market auto portal with moderate traffic and large inventory across three countries. Its owner, Carsome (via iCar Asia), also controls Carlist.my in Malaysia, One2car in Thailand and Mobil123 in Indonesia — a single ownership cluster spanning the dominant national car portals of five SEA countries. The techniques used to structure Carmudi data transfer directly to several other Carapis platforms in the region.
Data Fields Available
Carapis extracts a complete structured record from each Carmudi listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage, condition (used / new)
- Pricing — listed price
- Listing context — dealer / seller info, location, photo gallery
Carmudi’s value is multi-country reach: a single integration covers PH, ID and VN dealer inventory, delivered as clean structured fields.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "carmudi", "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-country inventory powers residual-value and market-pricing models for dealers.
- Market research — track PH/ID/VN inventory mix and price trends from one source. See market research.
- Import / export — benchmark regional pricing across three markets. See import & export.