OLX.uz Data Parser & API
OLX.uz is Uzbekistan’s leading horizontal classifieds and the country’s main online car marketplace, and Carapis extracts its listing data, including spec, mileage, photos and seller info, through one REST API. Owned by OLX Group (Prosus/Naspers), it runs the same stack as Otomoto and Autovit, so one parser pattern reaches the Uzbek market too.
| Country | Uzbekistan |
|---|---|
| Type | Classifieds |
| Owner | OLX Group (Prosus) |
| Vehicle types | used, private |
| Monthly visits | national leader all-cat |
| Active listings | large (C2C) |
| API access | Partial / limited API |
| Parse priority | ★★☆☆☆ |
| Official site | www.olx.uz |
What is OLX.uz?
OLX.uz is the dominant horizontal classifieds platform in Uzbekistan, operated by OLX Group under Prosus/Naspers. Its vehicles category is the de-facto national car marketplace, heavily private-seller (C2C). It is the all-category national leader by traffic.
Market Position
OLX.uz is the national classifieds leader in Uzbekistan and the primary online channel for car listings. As an OLX Group / Prosus property it shares the group’s Motors stack with Otomoto (Poland) and Autovit (Romania), so the same parser pattern extends to the Uzbek market — useful for a region with otherwise limited structured data. Carapis handles the JS rendering and serves the data through one unified endpoint.
Data Fields Available
Carapis extracts a structured record from each OLX.uz car listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — options
- Listing context — seller type (private vs dealer), location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "olx-uz", "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 — track the Uzbek used-car market, otherwise thin on structured data. See market research.
- Pricing intelligence — C2C listings power pricing models for dealers.
- Import / export — Central Asia is a growing re-export corridor; listing data supports remote sourcing. See import & export.