# MakeMyTrip Hotel Details - Stars, Geo & Ratings

**Use case:** 

Extract MakeMyTrip and Goibibo hotel details free: star class, property type, address, PIN, geo-coordinates, aggregate rating and sub-ratings. CSV or JSON.

## Input

```json
{
  "startUrls": [
    "https://www.makemytrip.com/hotels/hotel-details/?hotelId=200703241029455940&city=CTGOI&country=IN",
    "https://www.makemytrip.com/hotels/taj_mg_road_bengaluru-details-bangalore.html",
    "https://www.goibibo.com/hotels/hard-rock-goa-hotel-in-goa-6204281054243107966/"
  ],
  "hotelIds": [
    "200703241029455940",
    "6204281054243107966"
  ],
  "reviewSource": "auto",
  "maxReviewsPerHotel": 0,
  "sortBy": "mostRecent",
  "minRating": 1,
  "maxRating": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "string"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "hotelStars": {
    "label": "Stars",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "hotelAddress": {
    "label": "Address",
    "format": "string"
  },
  "pinCode": {
    "label": "PIN code",
    "format": "string"
  },
  "geoLat": {
    "label": "Latitude",
    "format": "number"
  },
  "geoLong": {
    "label": "Longitude",
    "format": "number"
  },
  "overallRating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingLabel": {
    "label": "Tier",
    "format": "string"
  },
  "reviewsCount": {
    "label": "Total reviews",
    "format": "integer"
  },
  "subRatings": {
    "label": "Sub-ratings",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## 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.