# Steam Game Reviews

**Use case:** 

Collect up to 25 recent English public Steam reviews for App ID 730. Each normalized row includes review text, recommendation, engagement counts, direct review links, and game details.

## Input

```json
{
  "discoveryMethod": "appIds",
  "appIds": [
    "730"
  ],
  "storeUrls": [
    {
      "url": "https://store.steampowered.com/app/730/"
    }
  ],
  "gameNames": [
    "Counter-Strike 2"
  ],
  "language": "english",
  "reviewType": "all",
  "purchaseType": "all",
  "reviewOrder": "recent",
  "includeOfftopicActivity": false,
  "maxReviewsPerGame": 25
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "reviewText": {
    "label": "Review text",
    "format": "string"
  },
  "recommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "language": {
    "label": "Review language",
    "format": "string"
  },
  "createdAt": {
    "label": "Created at",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated at",
    "format": "string"
  },
  "engagement": {
    "label": "Review engagement",
    "format": "object"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "object"
  },
  "reviewContext": {
    "label": "Review context",
    "format": "object"
  },
  "developerResponse": {
    "label": "Developer response",
    "format": "object"
  },
  "game": {
    "label": "Game",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Steam Reviews Scraper](https://apify.com/maximedupre/steam-reviews.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/steam-reviews.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/maximedupre/steam-reviews.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`).
