# Steam Indie Roguelike Game Discount Tracker

**Use case:** 

Scrape Steam daily for indie roguelike and roguelite prices and discounts. Built for deals newsletters and Discord bots that alert gamers to live sales.

## Input

```json
{
  "search_terms": [
    "roguelike",
    "roguelite"
  ],
  "max_results": 10
}
```

## Output

```json
{
  "name": {
    "label": "Game Name",
    "format": "string"
  },
  "url": {
    "label": "Game URL",
    "format": "string"
  },
  "id": {
    "label": "Game ID",
    "format": "string"
  },
  "price": {
    "label": "Original Price",
    "format": "string"
  },
  "discount_price": {
    "label": "Discount Price",
    "format": "string"
  },
  "discount_percentage": {
    "label": "Discount Percentage",
    "format": "string"
  },
  "release_date": {
    "label": "Release Date",
    "format": "string"
  },
  "reviews_summary": {
    "label": "Reviews Summary",
    "format": "string"
  },
  "platforms": {
    "label": "Platforms",
    "format": "array"
  },
  "search_term": {
    "label": "Search Keyword",
    "format": "string"
  },
  "extraction_date": {
    "label": "Extraction Date",
    "format": "string"
  },
  "extraction_datetime": {
    "label": "Extraction Datetime",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Steam Listing Search By Keyword](https://apify.com/datacach/steam-listing-search-by-keyword) with a specific input configuration. Visit the [Actor detail page](https://apify.com/datacach/steam-listing-search-by-keyword) to learn more, explore other use cases, and run it yourself.