# Scrape Dubai Villa Sales from Property Finder

**Use case:** 

Collect Dubai villas for sale from Property Finder with asking prices, size, bedrooms, broker names, and contact details.

## Input

```json
{
  "listingType": "buy",
  "location": "dubai",
  "propertyType": "villa",
  "maxResults": 100,
  "minPrice": 2000000,
  "maxPrice": 8000000
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "area": {
    "label": "Area (sqft)",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "agentPhone": {
    "label": "Phone",
    "format": "text"
  },
  "brokerName": {
    "label": "Broker",
    "format": "text"
  },
  "listedDate": {
    "label": "Listed",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "text"
  }
}
```

## About this Actor

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