Mobile.kz Data Parser & API
Mobile.kz (Kaspi auto) is a Kazakh used-car portal — smaller than the market leader Kolesa.kz — and Carapis extracts its listing data, including spec, mileage, photos and dealer details, through one REST API. A secondary, dealer-focused source, it broadens coverage of the Kazakh market beyond Kolesa.
| Country | Kazakhstan |
|---|---|
| Type | Portal |
| Vehicle types | used, dealer |
| Monthly visits | smaller than Kolesa |
| Active listings | — (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | mobile.kz |
What is Mobile.kz?
Mobile.kz (also associated with Kaspi auto) is a used-car portal in Kazakhstan focused on dealer inventory. It is a secondary player behind the dominant Kolesa.kz. Its traffic is smaller than Kolesa’s.
Market Position
Mobile.kz sits well behind Kolesa.kz in Kazakhstan, with traffic smaller than the market leader. Its value is as a complementary dealer-focused source for broadening coverage of the Kazakh market. There is no public API and anti-bot is moderate, so Carapis handles extraction and serves the data through one unified endpoint.
Data Fields Available
Carapis extracts a structured record from each Mobile.kz listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — options
- Listing context — dealer / seller info, location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "mobile-kz", "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
- Market research — broaden coverage of the Kazakh dealer market beyond Kolesa. See market research.
- Pricing intelligence — dealer listings add to pricing models for dealers.
- Import / export — Central Asia is a re-export corridor; dealer data supports remote sourcing. See import & export.