Hatla2ee Data Parser & API
Hatla2ee is an Egypt-origin auto portal operating across Egypt and the UAE — drawing roughly 2M monthly visitors — and Carapis extracts its full listing data, including make, model, year, mileage, price and dealer info, through one REST API. Acquired by Dubizzle Group (announced Feb 2025), it shares an ownership cluster with Dubizzle UAE and Dubizzle Egypt, and Carapis serves it without you building a scraper.
| Country | Egypt |
|---|---|
| Type | Portal |
| Owner | Dubizzle Group |
| Vehicle types | used, new |
| Monthly visits | ~2M/mo (2025) |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | eg.hatla2ee.com |
What is Hatla2ee?
Hatla2ee (حطه لي) is a dedicated automotive portal that started in Egypt and expanded into the UAE, listing both used and new vehicles from dealers and private sellers. It draws an estimated ~2M monthly visitors (2025). In September 2024 it was acquired by Dubizzle Group (announced February 2025), bringing it into the same network as Dubizzle UAE and Dubizzle Egypt.
Market Position
Hatla2ee is one of Egypt’s strongest dedicated auto portals with ~2M monthly visitors, and its UAE arm extends the brand into the Gulf. Its acquisition by Dubizzle Group (ex-EMPG) means a single Carapis ownership cluster — Dubizzle UAE, Dubizzle Egypt and Hatla2ee — now covers the group’s core MENA auto markets. This consolidation makes Hatla2ee data complementary to the other Dubizzle properties rather than a standalone source.
Data Fields Available
Carapis extracts a complete structured record from each Hatla2ee listing:
- Vehicle identity — make, model, trim, model year, body type, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Listing context — seller type (dealer vs private), location, photo gallery
Because Hatla2ee spans both Egypt and the UAE, its data is useful for comparing pricing across two of the region’s largest used-car markets under one brand.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "hatla2ee", "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 — compare Egypt and UAE used-car pricing under one brand for dealers.
- Import / export — dealer and spec fields help exporters source across two markets. See import & export.
- Market research — track auto-portal inventory across Egypt and the Gulf. See market research.