Mobil123 Data Parser & API
Mobil123 is one of Indonesia’s leading car portals — a large national inventory of used, new and dealer vehicles — and Carapis extracts its full listing data, including price, mileage, spec and dealer details, through one REST API. Owned by Carsome via iCar Asia, Mobil123 sits in a consolidated cluster of dominant national portals, so a single Carapis approach reaches several SEA markets at once.
| Country | Indonesia |
|---|---|
| Type | Portal |
| Owner | iCar Asia / Carsome |
| Vehicle types | used, new, dealer |
| Monthly visits | est. high |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.mobil123.com |
What is Mobil123?
Mobil123 is a major car marketplace in Indonesia, listing used, new and dealer vehicles nationwide. 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, which completed the acquisition of Mobil123’s and Carmudi Indonesia’s parent.
Market Position
Mobil123 is one of Indonesia’s leading auto portals, with large national inventory. Its owner, Carsome (via iCar Asia), also controls Carlist.my in Malaysia, One2car in Thailand and Carmudi across PH/ID/VN — a single ownership cluster spanning the dominant national car portals of five SEA countries. The techniques used to structure Mobil123 data transfer directly to several other Carapis platforms in the region.
Data Fields Available
Carapis extracts a complete structured record from each Mobil123 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
Mobil123’s value is being a primary view of Indonesian dealer inventory and pricing, delivered as clean structured fields.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "mobil123", "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 — Indonesian inventory powers residual-value and market-pricing models for dealers.
- Market research — track Indonesian inventory mix, mileage and price trends. See market research.
- Import / export — benchmark Indonesian pricing against regional markets. See import & export.