# TripAdvisor Top Rated Reviews by URL - Scraper

**Use case:** 

Paste any TripAdvisor hotel, restaurant or attraction URL and pull its highest rated reviews first, with dates, trip type and text. Export to CSV or JSON.

## Input

```json
{
  "urls": [
    "https://www.tripadvisor.com/Attraction_Review-g187147-d188151-Reviews-Eiffel_Tower-Paris_Ile_de_France.html",
    "https://www.tripadvisor.com/Hotel_Review-g187147-d188729-Reviews-Le_Bristol_Paris-Paris_Ile_de_France.html",
    "https://www.tripadvisor.com/Restaurant_Review-g187147-d12947099-Reviews-Septime-Paris_Ile_de_France.html"
  ],
  "stopOnError": false,
  "maxReviewsPerEntity": 100,
  "reviewLanguage": "en",
  "reviewSort": "highest"
}
```

## Output

```json
{
  "input_url": {
    "label": "🔗 Input URL",
    "format": "string"
  },
  "type": {
    "label": "🏷 Type",
    "format": "string"
  },
  "data": {
    "label": "📦 Payload",
    "format": "object"
  },
  "error_code": {
    "label": "❌ Error",
    "format": "string"
  }
}
```

## About this Actor

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