API Reference · v1.0

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:

Headers
X-API-Key: "sk_live_YOUR_KEY"
GET/v1/projects

List Projects

Returns a paginated list of all off-plan projects currently in the database. Supports filtering by source, name, and district.

Parameter
Type
Description
limitint (default 50)Items per page.
sourcestringFilter by data source (e.g. 'geniemap', 'reelly').
qstringFuzzy search query on project name.
GET/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.

Response
{
  "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": "..." }
}
GET/v1/developers

List Developers

Fetch a paginated list of all real estate developers. Data is cleaned and deduplicated from multiple sources.

Example request
curl "https://api.dubaipropertyleads.ae/v1/developers?q=emaar&limit=10"
GET/v1/districts

List Districts

Retrieve standard area and district mappings used across all project locations.

Ready to build?

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