# Monitor NYC Hotel Deals for a Weekend Trip

**Use case:** 

Regularly scrape Booking.com for available hotel listings and prices in New York City for an upcoming weekend. This helps travel planners or event organizers id

## Input

```json
{
  "location": "New York",
  "checkinDate": "2024-07-26",
  "checkoutDate": "2024-07-28",
  "adults": 1,
  "rooms": 1,
  "currency": "USD",
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Hotel",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "reviewWord": {
    "label": "Score",
    "format": "string"
  },
  "address": {
    "label": "Location",
    "format": "string"
  },
  "distance": {
    "label": "Distance",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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