# Booking.com Hotel Details by URL

**Use case:** 

Paste Booking.com hotel URLs and get full details per property: address, facilities, description, scores and photos. Competitor monitoring in CSV/JSON.

## Input

```json
{
  "location": "Paris",
  "startUrls": [
    "https://www.booking.com/hotel/us/rodeway-inn-secaucus.html",
    "https://www.booking.com/hotel/ae/banyan-tree-dubai-at-bluewaters.html"
  ],
  "maxResults": 20,
  "includeDetails": false,
  "currency": "USD",
  "checkIn": "1 week",
  "checkOut": "9 days",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "sort": "popularity",
  "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"
  },
  "checkin_time": {
    "label": "🕒 Check-in",
    "format": "string"
  },
  "checkout_time": {
    "label": "🕚 Check-out",
    "format": "string"
  },
  "facility_count": {
    "label": "🛎 Facilities",
    "format": "integer"
  },
  "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.