# NYC Hotels Under $100 a Night - Booking Data

**Use case:** 

Find New York hotels under $100 per night on Booking.com: cheapest-first list with real prices, guest scores and free-cancellation flags. CSV/JSON export.

## Input

```json
{
  "location": "New York",
  "startUrls": [
    "https://www.booking.com/hotel/fr/le-bristol-paris.html"
  ],
  "maxResults": 100,
  "includeDetails": false,
  "currency": "USD",
  "checkIn": "1 week",
  "checkOut": "9 days",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "sort": "price_low",
  "priceMax": 100,
  "minReviewScore": "",
  "stars": [],
  "mealPlan": [],
  "facilities": [],
  "freeCancellation": false,
  "sustainable": false
}
```

## Output

```json
{
  "name": {
    "label": "🏨 Hotel",
    "format": "string"
  },
  "stars": {
    "label": "⭐ Stars",
    "format": "integer"
  },
  "score": {
    "label": "📊 Guest score",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "price": {
    "label": "💲 Price",
    "format": "string"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "city": {
    "label": "🏙 City",
    "format": "string"
  },
  "address": {
    "label": "📍 Address",
    "format": "string"
  },
  "url": {
    "label": "🔗 URL",
    "format": "string"
  }
}
```

## About this Actor

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