# Dubai Hotel Listings Data Extractor

**Use case:** 

Extract up to 200 hotel listings from Dubai on Booking.com. Get prices, reviews, availability, and ratings for detailed travel insights.

## Input

```json
{
  "startUrl": "https://www.booking.com/searchresults.html?ss=Dubai%2C+Dubai+Emirate%2C+United+Arab+Emirates&ssne=London&ssne_untouched=London&efdco=1&label=gen173nr-10CAEoggI46AdIM1gEaLUBiAEBmAEzuAEXyAEM2AED6AEB-AEBiAIBqAIBuAK59MLOBsACAdICJDk4M2NmOTkzLWY5OGEtNGMxNS1iNzA5LWJjNGY4ZGM4M2UzZNgCAeACAQ&aid=304142&lang=en-us&sb=1&src_elem=sb&src=searchresults&dest_id=-782831&dest_type=city&ac_position=0&ac_click_type=b&ac_langcode=xu&ac_suggestion_list_length=5&search_selected=true&search_pageview_id=f9b933427f030196&ac_meta=GhBmOWI5MzM0MjdmMDMwMTk2IAAoATICeHU6BUR1YmFp&group_adults=2&no_rooms=1&group_children=0",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "number"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "text"
  },
  "hotelUrl": {
    "label": "Hotel URL",
    "format": "link"
  },
  "searchLocation": {
    "label": "Search Location",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewScore": {
    "label": "Score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "displayPriceText": {
    "label": "Price",
    "format": "text"
  },
  "displayPriceAmount": {
    "label": "Price Amount",
    "format": "number"
  },
  "displayPriceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "freeCancellation": {
    "label": "Free Cancellation",
    "format": "boolean"
  },
  "noPrepaymentNeeded": {
    "label": "No Prepayment",
    "format": "boolean"
  },
  "isPreferred": {
    "label": "Preferred",
    "format": "boolean"
  },
  "isSustainable": {
    "label": "Sustainable",
    "format": "boolean"
  }
}
```

## About this Actor

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