# TripAdvisor Listing Pages Parser - Bulk Scraper

**Use case:** 

Paste TripAdvisor hotels, restaurants or attractions listing URLs and pull each result with ratings, review counts and rank. Export to CSV or JSON.

## Input

```json
{
  "urls": [
    "https://www.tripadvisor.com/Restaurants-g187147-Paris_Ile_de_France.html",
    "https://www.tripadvisor.com/Hotels-g187147-Paris_Ile_de_France-Hotels.html",
    "https://www.tripadvisor.com/Attractions-g187147-Activities-Paris_Ile_de_France.html",
    "https://www.tripadvisor.com/Hotels-g186338-London_England-Hotels.html"
  ],
  "stopOnError": false,
  "maxReviewsPerEntity": 0,
  "reviewLanguage": "en",
  "reviewSort": "most_relevant"
}
```

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