# Track top selling games on Steam

**Use case:** 

Track the top selling games on Steam: title, price, discount percent, Metacritic score, total recommendations, release date and the genre list.

## Input

```json
{
  "mode": "charts",
  "searchTerms": [
    "roguelike"
  ],
  "appIds": [
    "730"
  ],
  "collection": "top_sellers",
  "sortBy": "relevance",
  "onlySpecials": false,
  "maxAppsPerQuery": 50,
  "fullDetails": true,
  "includeSteamSpy": true,
  "maxReviewsPerApp": 100,
  "reviewsFilter": "recent",
  "reviewLanguage": "all",
  "reviewType": "all",
  "purchaseType": "all",
  "country": "us",
  "language": "en",
  "monitorMode": false,
  "monitorStoreName": "steam-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "appId": {
    "label": "App ID"
  },
  "title": {
    "label": "Title"
  },
  "appType": {
    "label": "Type"
  },
  "priceFormatted": {
    "label": "Price"
  },
  "priceFinalUsd": {
    "label": "Price (USD)"
  },
  "discountPercent": {
    "label": "Discount %"
  },
  "metacriticScore": {
    "label": "Metacritic"
  },
  "recommendationsTotal": {
    "label": "# Reviews"
  },
  "releaseDate": {
    "label": "Released"
  },
  "genreList": {
    "label": "Genres",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Steam Scraper — Games, Prices, Reviews & Charts](https://apify.com/scrapesage/steam-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/steam-scraper) to learn more, explore other use cases, and run it yourself.