# GOG reviews scraper for game ratings and comments

**Use case:** 

Scrape public GOG game reviews, ratings, comments, reviewer details, votes, and verified-owner labels into structured data.

## Input

```json
{
  "productIds": [
    "1207664663"
  ],
  "maxReviewsPerGame": 25,
  "maxReviewsTotal": 25,
  "verifiedOwnersOnly": false,
  "concurrency": 2
}
```

## Output

```json
{
  "productTitle": {
    "label": "Game",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "reviewerUsername": {
    "label": "Reviewer",
    "format": "text"
  },
  "verifiedOwner": {
    "label": "Verified owner",
    "format": "boolean"
  },
  "upvotes": {
    "label": "Upvotes",
    "format": "number"
  },
  "downvotes": {
    "label": "Downvotes",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "productUrl": {
    "label": "Game URL",
    "format": "link"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  }
}
```

## About this Actor

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