# Scrape latest Booking.com reviews first

**Use case:** 

Fetch the newest Booking.com reviews first for fresh-feedback dashboards: score, title, pros/cons, date. Export CSV/JSON.

## Input

```json
{
  "startUrls": [
    "https://www.booking.com/hotel/us/pod.html"
  ],
  "maxReviewsPerHotel": 25,
  "sortBy": "newest",
  "language": "all",
  "tripType": "all",
  "travelerType": "all",
  "stripPersonalData": true,
  "maxRetriesPerPage": 10,
  "monitorMode": false,
  "alertOnNewReview": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "diagnose": false
}
```

## Output

```json
{
  "hotel_name": {
    "label": "Hotel",
    "format": "string"
  },
  "score": {
    "label": "Score /10",
    "format": "number"
  },
  "title": {
    "label": "Review title",
    "format": "string"
  },
  "review_date": {
    "label": "Date",
    "format": "string"
  },
  "positive_text": {
    "label": "Liked",
    "format": "string"
  },
  "negative_text": {
    "label": "Disliked",
    "format": "string"
  },
  "traveler_type": {
    "label": "Traveler",
    "format": "string"
  },
  "room_type": {
    "label": "Room",
    "format": "string"
  },
  "nights": {
    "label": "Nights",
    "format": "integer"
  },
  "reviewer_country": {
    "label": "Country",
    "format": "string"
  },
  "reviews_url": {
    "label": "Reviews page",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Booking.com Reviews Scraper — Most Comprehensive](https://apify.com/scrapersdelight/booking-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/booking-reviews-scraper) to learn more, explore other use cases, and run it yourself.