# Steam Indie Game Market Research Scraper

**Use case:** 

Research Steam indie niches by collecting game prices, reviews, discounts, platforms, and release dates.

## Input

```json
{
  "searchQueries": [
    "indie horror",
    "deckbuilder",
    "city builder"
  ],
  "sort": "release_date",
  "maxResultsPerSearch": 100,
  "maxSearchPages": 2,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "discountPercent": {
    "label": "Discount",
    "format": "text"
  },
  "reviewSummary": {
    "label": "Reviews",
    "format": "text"
  },
  "reviewPositivePercent": {
    "label": "Positive %",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "platforms": {
    "label": "Platforms",
    "format": "text"
  },
  "releaseDate": {
    "label": "Release Date",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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