# UAE Property Broker Contacts — Verified Emails + Phones (`leadharbor/uae-property-broker-contacts`) Actor

Verified UAE property broker contacts from PropertyFinder list pages: broker name, agency, email with MX verdict, phone, profile URL and listing count. Logged-out public pages only.

- **URL**: https://apify.com/leadharbor/uae-property-broker-contacts.md
- **Developed by:** [Mohammed Samaan](https://apify.com/leadharbor) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 verified broker contacts

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## UAE Property Broker Contacts — Verified Emails + Phones

Get real UAE property broker contacts from PropertyFinder: **name, agency, email, phone and profile URL** — with every email checked against the domain's mail records (MX) and tagged **valid / risky / invalid**.

This actor reads public, logged-out PropertyFinder list pages (no login, no proxy) and extracts the broker contacts that agencies publish alongside their listings. Great for real-estate outreach, lead lists, CRM imports and market research in Dubai, Abu Dhabi and the wider UAE.

### What you get

Each dataset row contains:

| Field | Description |
|---|---|
| `brokerName` | Broker name as shown on PropertyFinder |
| `agency` | Agency / company name |
| `email` | Broker email address |
| `emailStatus` | `valid` / `risky` / `invalid` — based on an MX lookup of the email domain |
| `phone` | Phone number (+971 format) when available |
| `profileUrl` | Link to the broker's PropertyFinder profile |
| `activeListings` | Number of active listings, when available |
| `city` | City searched |
| `sourceUrl` | The list page the contact was found on |
| `lastSeen` | Date the contact was collected |

### How it works

1. Builds PropertyFinder list-page URLs from your input (city, purpose, property type).
2. Fetches each page (server-rendered HTML, logged out — no proxies needed).
3. Extracts broker cards: name, agency, email, phone, profile URL.
4. Runs an **MX check** on every email domain and tags it valid / risky / invalid.
5. Deduplicates by email, drops known junk senders (e.g. site support addresses), and saves the results.

A short delay is kept between requests to stay polite to the source site.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| **City** (required) | string | `dubai` | Emirate/city, e.g. `dubai`, `abudhabi`, `sharjah` |
| **Purpose** | select | `rent` | `rent` or `buy` |
| **Property type** | string | `properties` | e.g. `apartments`, `villas`, `offices` |
| **Max pages** | integer | `5` | How many list pages to crawl (1 page ≈ 17–19 broker emails before dedupe) |
| **Verify emails (MX check)** | boolean | `true` | Tag each email valid / risky / invalid |
| **Only rows with email** | boolean | `true` | Drop brokers with no email found |

### Example input

```json
{
    "city": "dubai",
    "purpose": "rent",
    "propertyType": "properties",
    "maxPages": 5,
    "verifyEmails": true,
    "onlyWithEmail": true
}
```

### Example output

```json
{
    "brokerName": "Ahmed Al Mansouri",
    "agency": "Downtown Realty",
    "email": "ahmed@downtown-realty.ae",
    "emailStatus": "valid",
    "phone": "+971501234567",
    "profileUrl": "https://www.propertyfinder.ae/en/broker/ahmed-al-mansouri",
    "activeListings": 42,
    "city": "dubai",
    "sourceUrl": "https://www.propertyfinder.ae/en/rent/properties-for-rent.html?l=dubai",
    "lastSeen": "2026-09-20"
}
```

### Pricing

Pay per event: **$0.005 per verified broker contact** (a row with an email). You are only charged for rows that contain an email — pages with no results cost you nothing.

### Tips

- Use `onlyWithEmail: true` (default) so you only pay for contactable leads.
- Filter results by `emailStatus: "valid"` to remove typos and dead domains before outreach.
- Run once per city/purpose combination to build a broad list; re-run weekly to refresh.
- Sample run for testing: `maxPages: 1` gives you ~17–19 contacts for under $0.10.

### Disclaimer

This actor collects only publicly visible contact information from logged-out public pages, with rate limiting. Please respect applicable privacy laws (e.g. UAE PDPL) when using the data for outreach.

# Actor input Schema

## `city` (type: `string`):

Emirate/city, e.g. Dubai, Abu Dhabi, Sharjah. Uses PropertyFinder rent/buy list pages.

## `purpose` (type: `string`):

rent or buy.

## `propertyType` (type: `string`):

apartments, villas, offices, etc. — maps to the list-page path.

## `maxPages` (type: `integer`):

How many list pages to crawl. ~17-19 broker emails per page before dedupe.

## `verifyEmails` (type: `boolean`):

Tag each email valid / risky / invalid by checking the domain's mail records.

## `onlyWithEmail` (type: `boolean`):

Drop brokers with no email found. Buyers pay for rows with email.

## Actor input object example

```json
{
  "city": "dubai",
  "purpose": "rent",
  "propertyType": "properties",
  "maxPages": 5,
  "verifyEmails": true,
  "onlyWithEmail": true
}
```

# Actor output Schema

## `brokerContacts` (type: `string`):

Table of verified broker contacts (one row per broker with email).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "city": "dubai",
    "propertyType": "properties"
};

// Run the Actor and wait for it to finish
const run = await client.actor("leadharbor/uae-property-broker-contacts").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "city": "dubai",
    "propertyType": "properties",
}

# Run the Actor and wait for it to finish
run = client.actor("leadharbor/uae-property-broker-contacts").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "city": "dubai",
  "propertyType": "properties"
}' |
apify call leadharbor/uae-property-broker-contacts --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,leadharbor/uae-property-broker-contacts"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/CurbTXKZUuXkJvAPm/builds/KUdJdvnzHzm1Mdcop/openapi.json
