# Steam: negative reviews of a game from the last 30 days

**Use case:** 

Feedback example: every negative English review of a game from the last 30 days with the reviewer playtime and helpful votes — the fastest way to see what players complain about after an update. Change the game and run.

## Input

```json
{
  "games": [
    "https://store.steampowered.com/app/413150/Stardew_Valley/"
  ],
  "maxReviewsPerGame": 1000,
  "language": "english",
  "filter": "recent",
  "reviewType": "negative",
  "purchaseType": "all",
  "postedAfter": "30 days",
  "country": "us"
}
```

## Output

```json
{
  "gameName": {
    "label": "Game",
    "format": "string"
  },
  "createdAt": {
    "label": "Posted",
    "format": "string"
  },
  "recommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "votesHelpful": {
    "label": "Helpful votes",
    "format": "integer"
  },
  "author": {
    "label": "Author",
    "format": "object"
  },
  "url": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Steam Reviews Scraper — Playtime, Votes, Languages, No Login](https://apify.com/chorelet/steam-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/chorelet/steam-reviews-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/chorelet/steam-reviews-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
