# Rome Restaurant Reviews from TripAdvisor

**Use case:** 

Find Rome restaurants on TripAdvisor and export recent reviews, ratings, titles, dates, and reviewer details.

## Input

```json
{
  "searchQueries": [
    "best pizza Rome"
  ],
  "placeType": "restaurants",
  "maxPlacesPerQuery": 3,
  "maxReviewsPerPlace": 50,
  "reviewLanguage": "en",
  "maxRequestRetries": 5,
  "tripAdvisorApiKey": "3c7beec8-846d-4377-be03-71cae6145fdc"
}
```

## Output

```json
{
  "locationName": {
    "label": "Place",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "publishedDate": {
    "label": "Date",
    "format": "text"
  },
  "username": {
    "label": "Reviewer",
    "format": "text"
  },
  "tripType": {
    "label": "Trip Type",
    "format": "text"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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