# Steam Ratings

**Use case:** 

Use the public Steam store URL for App ID 730 to collect up to 10 recent public Steam reviews. Each normalized row includes recommendation data, review text, and an aggregate game review summary with score and label when available.

## Input

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

## 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`).
