# Collect Reviews for a GetYourGuide Tour

**Use case:** 

Pull a GetYourGuide activity’s reviews: rating, review text, author and date, plus the tour’s average rating and total review count. No login.

## Input

```json
{
  "searchQueries": [
    "rome colosseum",
    "paris museum tickets"
  ],
  "locationUrls": [
    "https://www.getyourguide.com/rome-l33/"
  ],
  "activityUrls": [
    "https://www.getyourguide.com/rome-l33/colosseum-roman-forum-palatine-hill-guided-tour-t195566/"
  ],
  "currency": "USD",
  "language": "en",
  "includeActivityDetails": true,
  "includeReviews": true,
  "maxReviewsPerActivity": 50,
  "deduplicateSuppliers": false,
  "minRating": 0,
  "minReviews": 0,
  "minPrice": 0,
  "maxPrice": 0,
  "freeCancellationOnly": false,
  "maxResults": 100,
  "maxResultsPerSearch": 60,
  "monitorMode": false,
  "monitorStoreName": "getyourguide-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "activityTitle": {
    "label": "Activity"
  },
  "rating": {
    "label": "Rating"
  },
  "text": {
    "label": "Review"
  },
  "author": {
    "label": "Author"
  },
  "date": {
    "label": "Date"
  },
  "activityUrl": {
    "label": "URL"
  }
}
```

## About this Actor

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