# Steam Survival & Crafting Game Data Scraper

**Use case:** 

Scrape Steam survival, crafting and base-building listings every week. Helps indie studios benchmark pricing, review counts and release timing pre-launch.

## Input

```json
{
  "search_terms": [
    "survival",
    "crafting"
  ],
  "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.