# 🎮 Steam Games Scraper — Prices, Genres & Metacritic

**Use case:** 

No-code, cheap Steam API. Scrape store games: name, price, discount, developers, publishers, genres, platforms, Metacritic & reviews — cheapest per item.

## Input

```json
{
  "searches": [
    "portal"
  ],
  "appIds": [],
  "maxGamesPerSearch": 20,
  "country": "us",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "appId": {
    "label": "App Id",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "isFree": {
    "label": "Is Free",
    "format": "boolean"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "priceCents": {
    "label": "Price Cents",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "discountPct": {
    "label": "Discount Pct",
    "format": "number"
  },
  "developers": {
    "label": "Developers",
    "format": "text"
  },
  "publishers": {
    "label": "Publishers",
    "format": "text"
  },
  "genres": {
    "label": "Genres",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "platforms": {
    "label": "Platforms",
    "format": "text"
  },
  "metacritic": {
    "label": "Metacritic",
    "format": "number"
  },
  "metacriticUrl": {
    "label": "Metacritic Url",
    "format": "link"
  },
  "recommendations": {
    "label": "Recommendations",
    "format": "number"
  },
  "requiredAge": {
    "label": "Required Age",
    "format": "number"
  },
  "releaseDate": {
    "label": "Release Date",
    "format": "date"
  },
  "comingSoon": {
    "label": "Coming Soon",
    "format": "boolean"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "headerImage": {
    "label": "Header Image",
    "format": "image"
  },
  "shortDescription": {
    "label": "Short Description",
    "format": "text"
  },
  "supportedLanguages": {
    "label": "Supported Languages",
    "format": "text"
  },
  "dlcCount": {
    "label": "Dlc Count",
    "format": "number"
  },
  "url": {
    "label": "Url",
    "format": "link"
  }
}
```

## About this Actor

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