# Scrape Steam games on special

**Use case:** 

Extract discounted games from Steam's specials. Structured game data with prices and discounts. Pay per result.

## Input

```json
{
  "searchTerms": [
    "elden ring",
    "hades"
  ],
  "browseSection": "specials",
  "startUrls": [
    "https://store.steampowered.com/app/1245620/ELDEN_RING/"
  ],
  "appIds": [
    "1245620",
    "1145360"
  ],
  "maxResults": 5,
  "country": "us",
  "allCountries": false,
  "language": "en",
  "includeReviews": true,
  "includeDescription": true,
  "includeMedia": true,
  "includeSteamSpy": false,
  "priceFilter": "all"
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "appId": {
    "label": "App ID",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "finalPrice": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "discountPercent": {
    "label": "Disc %",
    "format": "number"
  },
  "reviewScoreDesc": {
    "label": "Reviews",
    "format": "text"
  },
  "positivePercent": {
    "label": "Positive %",
    "format": "number"
  },
  "metacriticScore": {
    "label": "Metacritic",
    "format": "number"
  },
  "releaseDate": {
    "label": "Released",
    "format": "text"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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