# Steam Launch Sentiment Monitor

**Use case:** 

Analyze Steam reviews during a launch window by date, language, sentiment, helpful votes, playtime, and game metadata.

## Input

```json
{
  "appIds": [
    "730"
  ],
  "urls": [
    "https://store.steampowered.com/app/1245620/ELDEN_RING/"
  ],
  "language": "english",
  "reviewType": "all",
  "purchaseType": "all",
  "sort": "all",
  "maxReviewsPerGame": 500,
  "startDate": "2024-01-01",
  "endDate": "2024-12-31",
  "includeGameInfo": true
}
```

## Output

```json
{
  "appId": {
    "label": "App ID"
  },
  "gameName": {
    "label": "Game"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "language": {
    "label": "Language"
  },
  "positive": {
    "label": "Positive"
  },
  "review": {
    "label": "Review"
  },
  "votesUp": {
    "label": "Helpful",
    "format": "number"
  },
  "votesFunny": {
    "label": "Funny",
    "format": "number"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "playtimeForeverMinutes": {
    "label": "Playtime (min)",
    "format": "number"
  },
  "createdAt": {
    "label": "Created"
  }
}
```

## About this Actor

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