# Scrape 5-Star Hotels in Paris - Booking.com Scraper

**Use case:** 

Get every 5-star hotel in Paris from Booking.com with nightly rates, review scores, exact coordinates and free-cancellation flags. Export CSV or JSON.

## Input

```json
{
  "locationQuery": "Paris",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "maxResults": 50,
  "sortBy": "reviewScore",
  "currency": "USD",
  "language": "en-us",
  "starRatings": [
    "5"
  ],
  "freeCancellationOnly": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "name": {
    "label": "Property"
  },
  "pricePerNight": {
    "label": "Per night"
  },
  "price": {
    "label": "Total"
  },
  "currency": {
    "label": "Currency"
  },
  "reviewScore": {
    "label": "Score"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "starRating": {
    "label": "Stars"
  },
  "district": {
    "label": "Area"
  },
  "freeCancellation": {
    "label": "Free cancel"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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