DEV Community

Get Anything
Get Anything

Posted on

Dubai Off-Plan vs Resale in 2026: What the DLD Transaction Data Actually Shows

Dubai's property market just had its biggest six months on record — 87,800 transactions worth around AED 291.7 billion in H1 2026, with average prices up ~9% and off-plan making up roughly 71% of all volume. Every headline is about off-plan. But if you're actually deploying capital, the question isn't "is off-plan hot?" — it's "first-sale or resale, in which community, at what price per sqm, right now?"

The only data that answers that is registered transaction data from the Dubai Land Department (DLD) — not the asking prices on the portals. Here's how to pull it and read the off-plan vs resale story yourself.

Why "off-plan vs resale" is the metric that matters

The DLD tags every sale with a sale sequence: first sale (off-plan / primary, straight from the developer) or resale (secondary market). That single flag tells you:

  • Where the primary pipeline is concentrated — first-sale volume clusters in emerging communities with new launches (Dubai South, JVC, Dubai Islands, Dubai Creek Harbour).
  • The premium/discount between primary and secondary — first-sale price per sqm vs resale price per sqm in the same community, the same month.
  • Momentum — rising resale volume in an off-plan-heavy area signals an exit market forming.

How to get it (free, no API key)

The DLD publishes this on its public transactions page. Instead of wrangling it by hand, the Dubai DLD Transactions Scraper turns it into clean JSON for any date range — one record per community × sub-type × sale sequence, with pricePerSqmAed, avgTransactionValueAed, transactionCount and totalValueAed, in English and Arabic.

Example: reading the split in JVC

For Jumeirah Village Circle — one of the highest-volume communities in 2026 — the data separates:

{ "community": "JUMEIRAH VILLAGE CIRCLE", "propertySubType": "Flat",
  "saleSequence": "First",  "transactionCount": 118, "pricePerSqmAed": 16218 }
{ "community": "JUMEIRAH VILLAGE CIRCLE", "propertySubType": "Flat",
  "saleSequence": "Second", "transactionCount": 110, "pricePerSqmAed": 12106 }
Enter fullscreen mode Exit fullscreen mode

First-sale (off-plan) clears higher per sqm than resale in the same community — the "new-build premium" you can now quantify per area, per month.

What to build with it

  • Off-plan heat maps — first-sale volume by community over time
  • Primary vs secondary price gap trackers
  • Absorption / exit signals — when resale volume rises in an off-plan area
  • Valuation comparables grounded in registered prices, not listings

Pair it with live listings

To see asking vs sold in the same community, add the Bayut Property Scraper (live listings: price, beds, area, agent). Asking price from Bayut, sold price from DLD — the full gap in one view.

Ask it in plain English

Both tools plug into ChatGPT/Claude via the Apify MCP server:

"Compare off-plan vs resale price per sqm in Business Bay this quarter."


Tool: Dubai DLD Transactions Scraper · more Gulf data tools by Get Anything.

Top comments (0)