# Shimla Hotel Reviews - MakeMyTrip & Goibibo

**Use case:** 

Scrape top Shimla hotel reviews from MakeMyTrip & Goibibo: rating, text, travel type, room and photos. Build a Shimla hotel-review dataset. CSV or JSON.

## Input

```json
{
  "startUrls": [
    "https://www.makemytrip.com/hotels/hotel-details/?hotelId=202102240401137697&city=CTSLV&country=IN",
    "https://www.goibibo.com/hotels/welcomheritage-elysium-resort-spa-hotel-in-shimla-2589120660318097043/"
  ],
  "reviewSource": "auto",
  "maxReviewsPerHotel": 200,
  "sortBy": "mostRecent",
  "minRating": 1,
  "maxRating": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "submittedAt": {
    "label": "Submitted",
    "format": "string"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "object"
  },
  "travelType": {
    "label": "Travel type",
    "format": "string"
  },
  "roomName": {
    "label": "Room",
    "format": "string"
  },
  "overallRating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "reviewText": {
    "label": "Review",
    "format": "string"
  },
  "ownerResponse": {
    "label": "Hotel response",
    "format": "object"
  },
  "imagesCount": {
    "label": "# images",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [MakeMyTrip & Goibibo Reviews Scraper 🏨 Ratings, Text & Data](https://apify.com/factden/makemytrip-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/factden/makemytrip-scraper) to learn more, explore other use cases, and run it yourself.