# GetYourGuide Review Data Extractor

**Use case:** 

Collect structured review data from GetYourGuide product pages, including ratings, review content, and author details for in-depth analysis.

## Input

```json
{
  "product_url": "https://www.getyourguide.com/uss-midway-museum-l4441/the-uss-midway-museum-t12879",
  "product_urls": [
    "https://www.getyourguide.com/london-l57/tower-of-london-early-access-crown-jewels-complete-tour-t200482/",
    "https://www.getyourguide.com/london-l57/coca-cola-london-eye-standard-or-fast-track-admission-t170451/"
  ],
  "page_size": 100,
  "page": 1
}
```

## Output

```json
{
  "id": {
    "label": "Review ID",
    "format": "string"
  },
  "product_id": {
    "label": "Product ID",
    "format": "string"
  },
  "product_url": {
    "label": "Product URL",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review Title",
    "format": "string"
  },
  "content": {
    "label": "Review Content",
    "format": "string"
  },
  "author_name": {
    "label": "Author Name",
    "format": "string"
  },
  "user_identifier_value": {
    "label": "User ID",
    "format": "string"
  },
  "review_date": {
    "label": "Review Date",
    "format": "string"
  },
  "helpful_votes": {
    "label": "Helpful Votes",
    "format": "number"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "owner_response": {
    "label": "Owner Response",
    "format": "string"
  },
  "owner_response_author": {
    "label": "Response Author",
    "format": "string"
  },
  "owner_response_date": {
    "label": "Response Date",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "overall_star_rating": {
    "label": "Overall Rating",
    "format": "number"
  },
  "overall_review_count": {
    "label": "Total Reviews",
    "format": "integer"
  }
}
```

## About this Actor

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