# Scrape TripAdvisor hotel reviews and ratings

**Use case:** 

Pull every review from a TripAdvisor hotel page: star ratings, full text, stay dates, trip type, subratings, and owner responses. Track guest sentiment.

## Input

```json
{
  "startUrls": [
    "https://www.tripadvisor.com/Hotel_Review-g60763-d675616-Reviews-The_Plaza_New_York_A_Fairmont_Managed_Hotel-New_York_City_New_York.html"
  ],
  "maxReviews": 100,
  "sortReviewsBy": "newest",
  "includeQuestionsAndAnswers": true,
  "maxQuestions": 50,
  "includeAiReviewSummary": true,
  "maxItems": 0,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "resultType": {
    "label": "Result Type",
    "format": "string"
  },
  "locationName": {
    "label": "Location Name",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review Title",
    "format": "string"
  },
  "text": {
    "label": "Review Text",
    "format": "string"
  },
  "publishedDate": {
    "label": "Published Date",
    "format": "string"
  },
  "stayDate": {
    "label": "Stay / Visit Date",
    "format": "string"
  },
  "tripType": {
    "label": "Trip Type",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful Votes",
    "format": "integer"
  },
  "ownerResponse": {
    "label": "Owner Response",
    "format": "string"
  },
  "subratings": {
    "label": "Subratings",
    "format": "array"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "author": {
    "label": "Author",
    "format": "object"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

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