# BayutIfull bayut property-scraper (`therealdude/bayut-ifull`) Actor

Extract property listings from Bayut.com - UAE's #1 real estate portal. Scrapes 50+ fields including price, location, agent contacts, developer info, amenities, building details, and regulatory information. Supports direct URLs or city-wide searches for Dubai, Abu Dhabi, Sharjah and all UAE cities.

- **URL**: https://apify.com/therealdude/bayut-ifull.md
- **Developed by:** [AuxCodes](https://apify.com/therealdude) (community)
- **Categories:** Developer tools, Real estate
- **Stats:** 4 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 🏠 Bayut Property Scraper

Extract real estate listings from [Bayut.com](https://www.bayut.com) - UAE's #1 property portal.

---

### ✨ What You Get

#### 📋 Core Property Data
| Field | Description |
|-------|-------------|
| `property_id` | Unique Bayut listing ID |
| `title` | Property headline |
| `price` / `priceFormatted` | Price (number & formatted) |
| `currency` | AED |
| `bedrooms` / `bathrooms` | Room counts |
| `area` / `area_unit` | Size in sqft |
| `description` | Full property description |
| `listingUrl` | Direct link to listing |
| `listingType` | `for-rent` or `for-sale` |

#### 📍 Location Data
| Field | Description |
|-------|-------------|
| `location` | Full address string |
| `city` | City name |
| `community` | Area/district |
| `latitude` / `longitude` | GPS coordinates |
| `google_maps_link` | Direct Google Maps link |

#### 👤 Agent & Agency
| Field | Description |
|-------|-------------|
| `agent_name` | Listing agent |
| `agency_name` | Real estate company |
| `phone_number` | Contact number |
| `unit_number` | Reference/unit ID |

#### 🏗️ Property Information
| Field | Description |
|-------|-------------|
| `property_type` | Apartment, villa, townhouse, etc. |
| `purpose` | For sale / for rent |
| `completion_status` | Ready, Off-Plan |
| `furnished` | Furnished / Unfurnished |
| `handover_date` | Expected completion (off-plan) |
| `verification_date` | Last verified |
| `listing_date` | When listed |
| `permit_number` | RERA permit |

#### ✅ Validated Information
| Field | Description |
|-------|-------------|
| `developer` | Property developer |
| `ownership` | Freehold / Leasehold |
| `built_up_area` | Total built area |
| `usage` | Residential / Commercial |
| `balcony_size` | Balcony sqft |
| `parking_availability` | Yes / No |

#### 🏢 Building Information
| Field | Description |
|-------|-------------|
| `building_name` | Building/tower name |
| `total_floors` | Number of floors |
| `total_parking_spaces` | Parking capacity |
| `total_building_area` | Total sqft |
| `elevators` | Number of lifts |
| `swimming_pools` | Pool count |

#### 📜 Regulatory Information
| Field | Description |
|-------|-------------|
| `permit_number` | RERA permit number |
| `zone_name` | DLD zone |
| `registered_agency` | Licensed agency |
| `rera_number` | Agency RERA ID |
| `brn_number` | Broker registration |

#### 🏗️ Project Information (Off-Plan)
| Field | Description |
|-------|-------------|
| `project_name` | Development name |
| `project_status` | Active / Completed |
| `last_inspected` | Last DLD inspection |
| `completion` | % complete |

#### 🎯 Amenities
Full list of property features: Pool, Gym, Parking, Security, Balcony, Smart Home, and 40+ more.

#### 📸 Images
All property photos in multiple resolutions.

---

### 🚀 Quick Start

#### 🔗 With Direct URLs
Scrape specific properties by pasting their URLs:

**Option 1: Single or Multiple Properties**
```json
{
  "startUrls": [
    { "url": "https://www.bayut.com/property/details-13258493.html" },
    { "url": "https://www.bayut.com/property/details-13517428.html" }
  ]
}
````

***

#### 🌐 Without URLs (Auto-Search)

Let the scraper find properties automatically:

**Option 2: By City**

```json
{
  "city": "dubai"
}
```

**Option 3: By Listing Type**

```json
{
  "listingType": "for-sale"
}
```

**Option 4: City + Listing Type**

```json
{
  "city": "abu-dhabi",
  "listingType": "for-rent"
}
```

**Option 5: Full Control**

```json
{
  "city": "sharjah",
  "listingType": "for-sale",
  "maxPages": 25
}
```

***

### ⚙️ Input Options

| Parameter | Default | Description |
|-----------|---------|-------------|
| `startUrls` | *empty* | Direct property URLs (fastest method) |
| `city` | `dubai` | Target city when no URLs provided |
| `listingType` | `for-rent` | `for-rent` or `for-sale` |
| `maxPages` | `10` | Number of listing pages (~25 properties each) |
| `maxConcurrency` | `5` | Parallel browsers (lower = safer) |

***

### 🌍 Supported Cities

🏙️ Dubai • Abu Dhabi • Sharjah • Ajman • Ras Al Khaimah • Fujairah • Al Ain

***

### 💡 Tips

- 🎯 **Direct URLs** = Fastest, most reliable
- 📄 **maxPages: 10** = ~250 properties per run
- 🐢 **Lower concurrency** = Less chance of blocks
- 📊 **Check logs** = Monitor progress in real-time

***

### 📞 Support

Questions? Issues? [Open a ticket](https://github.com/wetbanana/Bayut_ifull-Actor/issues)

# Actor input Schema

## `startUrls` (type: `array`):

List of Bayut URLs to scrape. Can be search pages or direct property links.

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

Target UAE city to search properties.

## `listingType` (type: `string`):

Property listing type - for sale or for rent.

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

Type of property to scrape. Leave empty for all types.

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

Maximum listing pages to scrape. Set to 0 for unlimited.

## `proxyConfiguration` (type: `object`):

Apify proxy configuration. UAE residential proxy recommended for best results.

## `geonixProxies` (type: `string`):

Custom proxy list (format: http://user:pass@host:port). One per line. Overrides Apify proxy if provided.

## `debugMode` (type: `boolean`):

Enable verbose logging and save screenshots for debugging.

## `headedMode` (type: `boolean`):

Run browser in visible mode. Only works locally, ignored on Apify platform.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.bayut.com/for-sale/property/dubai/"
    }
  ],
  "city": "dubai",
  "listingType": "for-sale",
  "propertyType": "",
  "maxPages": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AE"
  },
  "debugMode": false,
  "headedMode": false
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://www.bayut.com/for-sale/property/dubai/"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "AE"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("therealdude/bayut-ifull").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 = {
    "startUrls": [{ "url": "https://www.bayut.com/for-sale/property/dubai/" }],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "AE",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("therealdude/bayut-ifull").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.bayut.com/for-sale/property/dubai/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AE"
  }
}' |
apify call therealdude/bayut-ifull --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=therealdude/bayut-ifull",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "BayutIfull bayut property-scraper",
        "description": "Extract property listings from Bayut.com - UAE's #1 real estate portal. Scrapes 50+ fields including price, location, agent contacts, developer info, amenities, building details, and regulatory information. Supports direct URLs or city-wide searches for Dubai, Abu Dhabi, Sharjah and all UAE cities.",
        "version": "1.0",
        "x-build-id": "btxGKMXKgUHg8qZey"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/therealdude~bayut-ifull/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-therealdude-bayut-ifull",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/therealdude~bayut-ifull/runs": {
            "post": {
                "operationId": "runs-sync-therealdude-bayut-ifull",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/therealdude~bayut-ifull/run-sync": {
            "post": {
                "operationId": "run-sync-therealdude-bayut-ifull",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "startUrls": {
                        "title": "🔗 Start URLs",
                        "type": "array",
                        "description": "List of Bayut URLs to scrape. Can be search pages or direct property links.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "city": {
                        "title": "🏙️ City",
                        "enum": [
                            "dubai",
                            "abu-dhabi",
                            "sharjah",
                            "ajman",
                            "ras-al-khaimah",
                            "fujairah",
                            "umm-al-quwain"
                        ],
                        "type": "string",
                        "description": "Target UAE city to search properties.",
                        "default": "dubai"
                    },
                    "listingType": {
                        "title": "🏷️ Listing Type",
                        "enum": [
                            "for-sale",
                            "for-rent"
                        ],
                        "type": "string",
                        "description": "Property listing type - for sale or for rent.",
                        "default": "for-sale"
                    },
                    "propertyType": {
                        "title": "🏢 Property Type",
                        "enum": [
                            "",
                            "apartment",
                            "villa",
                            "townhouse",
                            "penthouse",
                            "compound",
                            "duplex"
                        ],
                        "type": "string",
                        "description": "Type of property to scrape. Leave empty for all types.",
                        "default": ""
                    },
                    "maxPages": {
                        "title": "📄 Max Pages",
                        "minimum": 0,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum listing pages to scrape. Set to 0 for unlimited.",
                        "default": 10
                    },
                    "proxyConfiguration": {
                        "title": "🌐 Apify Proxy",
                        "type": "object",
                        "description": "Apify proxy configuration. UAE residential proxy recommended for best results.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "AE"
                        }
                    },
                    "geonixProxies": {
                        "title": "🔒 Custom Proxies",
                        "type": "string",
                        "description": "Custom proxy list (format: http://user:pass@host:port). One per line. Overrides Apify proxy if provided."
                    },
                    "debugMode": {
                        "title": "🐛 Debug Mode",
                        "type": "boolean",
                        "description": "Enable verbose logging and save screenshots for debugging.",
                        "default": false
                    },
                    "headedMode": {
                        "title": "🖥️ Headed Mode",
                        "type": "boolean",
                        "description": "Run browser in visible mode. Only works locally, ignored on Apify platform.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
