# Scrape Dubai Real Estate and Rental Listings on Dubizzle

**Use case:** 

Extract active property listings from Dubizzle Dubai to identify high-yield investment opportunities and rental trends. Build an up-to-date real estate database

## Input

```json
{
  "urls": [
    "https://dubai.dubizzle.com/property-for-rent/residential/apartmentflat/"
  ],
  "location": "dubai",
  "sort_by": "date_desc",
  "page": 1,
  "max_items_per_url": 100,
  "max_retries_per_url": 3,
  "ignore_url_failures": true
}
```

## Output

```json
{
  "name_en": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "category_slug": {
    "label": "Category",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "seller_type": {
    "label": "Seller",
    "format": "text"
  },
  "is_verified_user": {
    "label": "Verified",
    "format": "text"
  },
  "photos_count": {
    "label": "Photos",
    "format": "number"
  },
  "added": {
    "label": "Added",
    "format": "text"
  },
  "permalink": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Dubizzle Listings Scraper (Unofficial)](https://apify.com/crawlerbros/dubizzle-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/dubizzle-scraper) to learn more, explore other use cases, and run it yourself.