Dubizzle Egypt Data Parser & API
Dubizzle Egypt (rebranded from OLX Egypt) is Egypt’s leading horizontal classifieds platform — carrying 200K+ total ads with a large automotive subset — and Carapis extracts its full car listing data, including make, model, year, mileage, price and seller type, through one REST API. Owned by Dubizzle Group (ex-EMPG), it shares a corporate data model with Dubizzle UAE and Hatla2ee, and Carapis serves it without you maintaining a Cloudflare-class scraper.
| Country | Egypt |
|---|---|
| Type | Classifieds |
| Owner | Dubizzle Group |
| Vehicle types | used, new, private |
| Monthly visits | high (200K+ total ads) |
| Active listings | large auto subset |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.dubizzle.com.eg |
What is Dubizzle Egypt?
Dubizzle Egypt is the Egyptian arm of Dubizzle Group’s classifieds network, rebranded from OLX Egypt. It is the country’s dominant horizontal marketplace, with autos as one of its top verticals, listing vehicles from both dealers and private sellers across more than 200K total ads. As part of Dubizzle Group, it sits alongside Hatla2ee — which the group acquired in 2024/2025 — giving the group two of Egypt’s strongest auto properties.
Market Position
Dubizzle Egypt is the leading horizontal classifieds platform in Egypt, with 200K+ total ads and a large automotive subset. Its parent, Dubizzle Group (ex-EMPG), consolidated the Egyptian auto market further by acquiring Hatla2ee (announced Feb 2025), so a single Carapis parser cluster covers both of the group’s Egyptian properties plus Dubizzle UAE. The OLX/Frontier lineage gives it a technical heritage shared with several other MENA classifieds.
Data Fields Available
Carapis extracts a complete structured record from each Dubizzle Egypt car listing:
- Vehicle identity — make, model, trim, model year, body type, fuel type, transmission
- Condition — mileage
- Pricing — listed price (in EGP)
- Listing context — seller type (dealer vs private), location/governorate, photo gallery
Seller-type and location fields make Dubizzle Egypt valuable for mapping dealer vs C2C supply and tracking Egyptian used-car pricing as the market shifts.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "dubizzle-egypt", "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 — track Egyptian used-car prices as the market moves, feeding dealer pricing models.
- Import / export — seller-type and spec data help exporters source from Egypt. See import & export.
- Market research — measure dealer vs private supply across Egypt’s #1 classifieds. See market research.