# Steam Negative Review Extractor

**Use case:** 

Collect negative Steam reviews for game feedback analysis, bug triage, product research, and player sentiment tracking.

## Input

```json
{
  "appIds": [
    "730"
  ],
  "searchQueries": [
    "Elden Ring"
  ],
  "language": "english",
  "reviewType": "negative",
  "purchaseType": "steam",
  "sort": "recent",
  "maxReviewsPerGame": 200,
  "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.