Dubai Land

live Reference

Dubai Land Department (DLD) — Dubai real-estate open data.

9 tools
0ms auth
free tier 50 calls/day

Tools

dld_search_transactions

Dubai property transactions (sales, mortgages and gifts) registered with the Dubai Land Department, with transaction value, procedure, area/district, project, property type, room count and nearest met

No parameters required.

Try it
dld_search_rents

Dubai rental contracts registered through Ejari with the Dubai Land Department — contract amount, annual amount, start/end dates, area/district, property type and size. Coverage is the current calenda

No parameters required.

Try it
dld_search_valuations

Official property valuations recorded by the Dubai Land Department — appraised total value, actual area, property sub-type, area/district and valuation date. Coverage is the current calendar year. A d

No parameters required.

Try it
dld_search_projects

Real-estate development projects registered with the Dubai Land Department — developer, project status, percent complete, start/completion dates and location. A date range AND a date_type are both req

No parameters required.

Try it
dld_search_lands

Registered land parcels in Dubai from the Dubai Land Department — parcel and land number, area/district, zone, land type, actual area, project and master project. No date range; filter by land type, z

No parameters required.

Try it
dld_search_buildings

Registered buildings in Dubai from the Dubai Land Department — building number, floors, rooms, flats/shops/offices counts, actual area, area/district, zone, project and creation date. No date range ne

No parameters required.

Try it
dld_list_brokers

Licensed real-estate brokers on the Dubai Land Department register — broker number and name, licence start/end dates, the brokerage office they sit under, and the office phone published on the registe

No parameters required.

Try it
dld_list_developers

Real-estate developers registered with the Dubai Land Department — developer number and name, licence dates and contact details. A date range is required and is matched against the licence dates.

No parameters required.

Try it
dld_list_areas

The Dubai Land Department register of area (district) names in English and Arabic with their AREA_ID codes — the reference list behind the AREA_EN values on transaction, rent and valuation rows.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/dubai-land/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dubai-land/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"dld_search_transactions","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("dld_search_transactions", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("dubai land department (dld) — dubai real-estate open data");