# Scrape Steam game reviews & sentiment

**Use case:** 

Scrape Steam game reviews with a sentiment summary: recommendation, review text, votes, language, author playtime and date, plus the overall score.

## Input

```json
{
  "mode": "reviews",
  "searchTerms": [
    "roguelike"
  ],
  "appIds": [
    "730",
    "292030"
  ],
  "collection": "top_sellers",
  "sortBy": "relevance",
  "onlySpecials": false,
  "maxAppsPerQuery": 50,
  "fullDetails": true,
  "includeSteamSpy": true,
  "maxReviewsPerApp": 200,
  "reviewsFilter": "recent",
  "reviewLanguage": "all",
  "reviewType": "all",
  "purchaseType": "all",
  "country": "us",
  "language": "en",
  "monitorMode": false,
  "monitorStoreName": "steam-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "appId": {
    "label": "App ID"
  },
  "votedUp": {
    "label": "Recommended"
  },
  "review": {
    "label": "Review"
  },
  "language": {
    "label": "Language"
  },
  "votesUp": {
    "label": "Helpful votes"
  },
  "weightedVoteScore": {
    "label": "Helpfulness"
  },
  "author.playtimeForeverMin": {
    "label": "Playtime (min)"
  },
  "createdAt": {
    "label": "Posted"
  }
}
```

## About this Actor

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