# Scrape Booking Hotel Photos

**Use case:** 

Extract public Booking.com hotel photo galleries with image URLs, captions, hotel IDs, and gallery order.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.booking.com/hotel/gb/the-savoy.html"
    }
  ],
  "maxItems": 80,
  "maxPhotosPerHotel": 80,
  "language": "en-us",
  "proxyCountryCode": "US",
  "useResidentialProxy": false,
  "pageWaitMs": 2500
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel name"
  },
  "hotelId": {
    "label": "Hotel ID"
  },
  "photoOrder": {
    "label": "Order"
  },
  "photoUrl": {
    "label": "Photo URL"
  },
  "caption": {
    "label": "Caption"
  },
  "category": {
    "label": "Category"
  },
  "hotelUrl": {
    "label": "Hotel URL"
  },
  "thumbnailUrl": {
    "label": "Thumbnail URL"
  },
  "width": {
    "label": "Width"
  },
  "height": {
    "label": "Height"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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