# Scrape Paris Hotel Prices - Booking.com

**Use case:** 

Scrape Paris hotel prices from Booking.com with hotel name, star rating, review score, price, breakfast and city. Export to JSON, CSV or Excel.

## Input

```json
{
  "searchTerms": [
    "Paris"
  ],
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "currency": "USD",
  "language": "en-us",
  "sortBy": "popularity",
  "minPrice": 0,
  "maxPrice": 0,
  "minReviewScore": 0,
  "minReviews": 0,
  "freeCancellationOnly": false,
  "breakfastIncludedOnly": false,
  "includeRooms": true,
  "maxResultsPerSearch": 50,
  "maxResults": 100,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorStoreName": "booking-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Hotel",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewScore": {
    "label": "Score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "priceBeforeDiscount": {
    "label": "Was",
    "format": "number"
  },
  "discountPercent": {
    "label": "Off %",
    "format": "number"
  },
  "freeCancellation": {
    "label": "Free cancel",
    "format": "boolean"
  },
  "breakfastIncluded": {
    "label": "Breakfast",
    "format": "boolean"
  },
  "roomName": {
    "label": "Room",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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