Aqarmap Data Parser & API
Aqarmap is Egypt’s homegrown incumbent property portal — 200,000+ listings spanning new-build, resale, rental, commercial and land — and PropAPIS extracts its listings, developer projects and pricing data through a single REST API. Cover Cairo, Giza, Alexandria and the New Capital without building or maintaining your own scraper.
| Country | Egypt |
|---|---|
| Type | Portal |
| Owner | Aqarmap |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~265K / mo (Semrush Mar 2026; self-reported 1.7M+) |
| Active listings | 200,000+ |
| API access | Partial / limited API |
| Parse priority | ★★★★☆ |
| Official site | aqarmap.com.eg |
Platform Overview
Market Position
- Egypt’s long-running homegrown portal, with 200,000+ listings across the country
- Traffic figures diverge: Semrush measures ~265K monthly visits (Mar 2026) while Aqarmap self-reports 1.7M+ — treat the self-reported claim cautiously (per the MENA & Africa research report)
- Strong in new-build / developer-direct inventory — Egypt is an off-plan-heavy market with large developer launches
- Offers research and pricing-data tooling alongside consumer listings
Market Coverage
Geographic Coverage:
- Cairo and Greater Cairo
- Giza and 6th of October
- New Administrative Capital and New Cairo
- Alexandria and the North Coast
Property Types:
- Apartments and Duplexes
- Villas and Townhouses
- New-Build / Compound units
- Commercial (offices, retail)
- Land and Plots
Data Availability
New-build and developer compounds are a dominant, data-rich segment in Egypt, mirroring the Gulf’s off-plan emphasis. Aqarmap surfaces project and developer context alongside standard listing fields, making it a strong source for new-build inventory (per the MENA & Africa research report).
Listing Categories:
- Buy: Resale and ready units
- Rent: Long-term rentals
- New-Build: Developer compounds and launches
- Commercial: Offices and retail
- Land: Plots and land
Data Fields Available
PropAPIS extracts structured data from each Aqarmap listing:
Property Information
- Address: District, compound and city
- Price: Sale price or rent (EGP)
- Bedrooms and Bathrooms
- Property Type: Apartment, villa, duplex, plot
- Area: Built-up size (sq m)
- Completion: Ready or new-build
New-Build / Project Data
- Developer: Developer name
- Project: Compound / development name
- Delivery: Expected handover where shown
Listing Details
- Description: Full listing text
- Amenities: Facilities and features
- Photos: Image URLs
- Added Date
Agent Information
- Agency: Agency or broker name
- Agent Contact: Phone where published
Location Data
- District and Compound
- City / Governorate
- Coordinates: Latitude and longitude
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a listing by URL or ID
property_data = api.platforms.aqarmap.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: EGP {property_data.price:,}")
print(f"Type: {property_data.property_type}")
print(f"District: {property_data.district}")Search Listings
# Search Aqarmap listings
listings = api.platforms.aqarmap.search(
city='Cairo',
purpose='for-sale',
min_price=2000000,
max_price=8000000,
min_bedrooms=2,
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - EGP {listing.price:,}")
print(f" {listing.bedrooms} bed | {listing.district}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Aqarmap listings in Cairo
listings = api.platforms.aqarmap.search(city='Cairo', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - EGP {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Aqarmap listings in Cairo
const listings = await api.platforms.aqarmap.search({
city: 'Cairo',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - EGP ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/aqarmap/search?city=Cairo&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"