# Scrape TripAdvisor attraction and tour reviews

**Use case:** 

Pull reviews for any TripAdvisor attraction or thing to do: ratings, full text, photos, trip type, and helpful votes. Great for destination research.

## Input

```json
{
  "startUrls": [
    "https://www.tripadvisor.com/Attraction_Review-g187147-d188151-Reviews-Eiffel_Tower-Paris_Ile_de_France.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.