Documentation
Build the next generation of PropTech with the most accurate Dubai real estate data feed. RESTful, predictable, fast.
Introduction
Our platform provides a RESTful architecture for querying refined off-plan project data. We bridge the gap between complex developer databases and your high-performance frontend applications by merging data from top platforms like GenieMap and ReellyAI into a single, unified structure.
Authentication
Secure access is handled via headers. Every request must include your API key:
X-API-Key: "sk_live_YOUR_KEY"/v1/projectsList Projects
Returns a paginated list of all off-plan projects currently in the database. Supports filtering by source, name, and district.
limitint (default 50)Items per page.sourcestringFilter by data source (e.g. 'geniemap', 'reelly').qstringFuzzy search query on project name./v1/projects/{id}Project Details
Returns a Unified Project Object regardless of the data source. Includes floor plans, rewritten proxy image URLs, pricing, and developer details.
{
"id": "123",
"source": "reelly",
"name": "Luxury Tower",
"location": {
"lat": 25.123,
"lng": 55.123,
"address": "Downtown Dubai"
},
"cover_image": "https://api.dubaipropertyleads.ae/v1/proxy/image?...",
"floor_plans": [...],
"price": { "from": 1500000, "currency": "AED" },
"developer": { "name": "Emaar", "logo": "..." }
}/v1/developersList Developers
Fetch a paginated list of all real estate developers. Data is cleaned and deduplicated from multiple sources.
curl "https://api.dubaipropertyleads.ae/v1/developers?q=emaar&limit=10"/v1/districtsList Districts
Retrieve standard area and district mappings used across all project locations.
Try every endpoint live, right now.
Open the playground, paste your API key, and start hitting real data. No internal reviews, no waiting.
Launch Playground