dld_search_transactions
Pack: dubai-land · Endpoint: https://gateway.pipeworx.io/dubai-land/mcp
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 metro/mall/landmark. Coverage is the current calendar year — earlier years come back empty. A date range is required.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
transaction_type | string | no | Group: “1” Sales, “2” Mortgages, “3” Gifts. Omit for all. |
usage | string | no | Property usage: “1” Residential, “2” Commercial, “3” Other. Omit for all. |
free_hold | string | no | ”1” freehold only, “0” non-freehold only |
off_plan | string | no | ”1” off-plan only, “0” ready only |
property_type_id | string | no | Upstream property-type id, as seen in PROPERTY_TYPE_ID |
Example call
Arguments
{
"from_date": "2026-09-01",
"to_date": "2026-09-06",
"transaction_type": "1",
"limit": 3,
"sort": "TRANS_VALUE_DESC"
}
curl
curl -X POST https://gateway.pipeworx.io/dubai-land/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dld_search_transactions","arguments":{"from_date":"2026-09-01","to_date":"2026-09-06","transaction_type":"1","limit":3,"sort":"TRANS_VALUE_DESC"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dld_search_transactions', {
"from_date": "2026-09-01",
"to_date": "2026-09-06",
"transaction_type": "1",
"limit": 3,
"sort": "TRANS_VALUE_DESC"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dubai-land": {
"url": "https://gateway.pipeworx.io/dubai-land/mcp"
}
}
}
See Getting Started for client-specific install steps.