# GetYourGuide activity review extractor

**Use case:** 

Create a structured review dataset for one GetYourGuide tour with ratings, authors, countries, dates, and activity metadata.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.getyourguide.com/paris-l16/paris-eiffel-tower-entry-ticket-with-optional-summit-access-t149861/"
    }
  ],
  "maxReviewsPerUrl": 25,
  "maxItems": 25,
  "language": "en-US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "activityTitle": {
    "label": "Activity",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Country",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "verifiedBooking": {
    "label": "Verified booking",
    "format": "boolean"
  },
  "reviewText": {
    "label": "Review",
    "format": "string"
  },
  "activityProvider": {
    "label": "Provider",
    "format": "string"
  },
  "aggregateRating": {
    "label": "Overall rating",
    "format": "number"
  },
  "aggregateReviewCount": {
    "label": "Total reviews",
    "format": "integer"
  },
  "activityId": {
    "label": "Activity ID",
    "format": "string"
  },
  "activityUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "helpfulCount": {
    "label": "Helpful votes",
    "format": "integer"
  },
  "language": {
    "label": "Page language",
    "format": "string"
  },
  "mediaUrls": {
    "label": "Media",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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