# Steam Game Details Scraper: price, reviews score, genres, bulk (`steadydata/steam-app-details`) Actor

Details of Steam games and apps by id or URL, up to 500 per run: name, type, price and discount per country, release date, developers, publishers, genres, platforms, Metacritic score, review score with positive and negative counts, DLC count and description, from Steam's store API. Pay per app.

- **URL**: https://apify.com/steadydata/steam-app-details.md
- **Developed by:** [Steadydata Team](https://apify.com/steadydata) (community)
- **Categories:** E-commerce, Business, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.00 / 1,000 app detaileds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Steam Game Details Scraper: price, reviews score, genres, bulk

Details of Steam games and apps by id or URL, up to 500 per run: name, type, price and discount per country, release date, developers, publishers, genres, platforms, Metacritic score, review score with positive and negative counts, DLC count and description, from Steam's store API. Pay per app.

### Why this scraper

- **Only delivered results are charged.** Inputs that fail come back as clear error
  records at no cost.
- Two calls to Steam's own store endpoints per app, no browser: details and the review summary in well under a second. Measured on the platform: three games for three hundredths of a cent.
- The facts a buyer compares: price and discount in the currency of the chosen country, release date as an ISO date, developers and publishers, genres, categories and platforms, Metacritic score, Steam's review label with the total, positive and negative counts and the positive percentage, recommendation count, DLC count, age rating, description, website and header image. No reviewer names or texts.

### Who this is for

Paste Steam app ids or store URLs in `apps` (up to 500 per run) and set `country` for the price. Every row carries the app id, name, type, free flag, price, currency, discount, release date, coming-soon flag, developers, publishers, genres, categories, platforms, Metacritic score, review label, review counts and percentage, recommendations, DLC count, required age, short description, website, header image and store link.

### Who this is not for

This is the store's public data: an app that is region-locked, delisted or not yet listed in the chosen country comes back as a free `NOT_FOUND` error row, and a free-to-play game shows price 0 without a currency. Release dates that Steam writes as a quarter or a year (`Q4 2026`) stay as written. The review summary counts Steam reviews only, not Metacritic user scores. Individual reviews are not delivered.

### Input example

```json
{
    "apps": [
        "570",
        "https://store.steampowered.com/app/1245620/ELDEN_RING/"
    ],
    "country": "us"
}
```

### Output example

- `appId`
- `name`
- `type`
- `isFree`
- `price`
- `currency`
- `discountPercent`
- `releaseDate`
- `comingSoon`
- `developers`
- `publishers`
- `genres`
- `categories`
- `platforms`
- `metacriticScore`
- `reviewScore`
- `totalReviews`
- `positivePercent`
- `totalPositive`
- `totalNegative`
- `recommendations`
- `dlcCount`
- `requiredAge`
- `shortDescription`
- `website`
- `headerImage`
- `url`

Error codes: `INVALID_APP`, `NOT_FOUND`, `BLOCKED`.

One delivered row looks like this:

```json
{
  "appId": "570",
  "name": "Dota 2",
  "type": "game",
  "isFree": true,
  "price": 0,
  "currency": null,
  "discountPercent": 0,
  "releaseDate": "2013-07-09",
  "comingSoon": false,
  "developers": [
    "Valve"
  ],
  "publishers": [
    "Valve"
  ],
  "genres": [
    "Action",
    "Strategy",
    "Free To Play"
  ],
  "categories": [
    "Multi-player",
    "Co-op",
    "Steam Trading Cards",
    "Steam Workshop",
    "SteamVR Collectibles",
    "In-App Purchases",
    "Camera Comfort",
    "Color Alternatives",
    "Custom Volume Controls",
    "Valve Anti-Cheat enabled",
    "Steam Timeline"
  ],
  "platforms": [
    "windows",
    "mac",
    "linux"
  ],
  "metacriticScore": 90,
  "recommendations": 14375,
  "dlcCount": 2,
  "requiredAge": null,
  "shortDescription": "Every day, millions of players worldwide enter battle as one of over a hundred Dota heroes. And no matter if it's their 10th hour of play or 1,000th, there's al...",
  "website": "http://www.dota2.com/",
  "headerImage": "https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/570/header.jpg?t=1769535998",
  "url": "https://store.steampowered.com/app/570/",
  "reviewScore": "Very Positive",
  "totalReviews": 2779814,
  "positivePercent": 80.5,
  "totalPositive": 2237579,
  "totalNegative": 542235,
  "status": "ok"
}
```

### Related actors from steadydata

- steam-game-reviews (publishing soon): what players wrote about the same game
- [google-trends-compare](https://apify.com/steadydata/google-trends-compare): which game is searched for more
- [youtube-search](https://apify.com/steadydata/youtube-search): the trailers and reviews on YouTube
- [google-news](https://apify.com/steadydata/google-news): the news about a game

### Pricing

Pay per event: one `app-detailed` event per delivered result. No charge for inputs
that fail, no separate platform-usage surcharge.

**Free Apify plan:** this actor delivers up to 25 rows per run for accounts on the Apify free
plan, and then stops with a message. That limit is set by us, not by Apify. It exists so the
actor keeps paying for itself for the people who do pay. Any paid Apify plan runs it at full
size, billed per delivered row, with failed rows never charged.

**Reviews:** if this actor saves you time, a short review on this page is the one thing that
helps most. Ratings are what other buyers look at first, and we have no other way to ask.

### FAQ

**Does it deliver individual reviews?** No, the summary only: label, total, positive and negative counts, positive percentage. That is the signal without the personal data.

**Which currency do I get?** The one Steam shows in the chosen `country`; `us` gives USD, `nl` EUR, `gb` GBP.

**Does it work for DLC and software?** Yes, any app id the store lists; the `type` column says game, dlc, software, demo or music.

**Can I monitor discounts?** Run it daily on your list of app ids; `discountPercent` and `price` change with every sale.

**Do I pay for unknown ids?** No. Only delivered apps are charged.

**Is personal data collected?**
`price` is in the currency of the chosen country as a decimal; `positivePercent` is Steam's positive share over all reviews; `releaseDate` is ISO when Steam gives a full date.

**What happens when the source changes?**
Sources change from time to time; that is the nature of this work. The actor is
monitored daily and fixed fast, and while it is broken you are not charged, because
only delivered results cost anything.

# Changelog

This Actor's version history is a separate document: https://apify.com/steadydata/steam-app-details/changelog.md

# Actor input Schema

## `apps` (type: `array`):

One per row, up to 500: a Steam app id (570) or a store URL (https://store.steampowered.com/app/570/Dota\_2/).

## `country` (type: `string`):

Two-letter country code that decides the currency and price: us, gb, nl, de, br.

## Actor input object example

```json
{
  "apps": [
    "570",
    "https://store.steampowered.com/app/1245620/ELDEN_RING/"
  ],
  "country": "us"
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "apps": [
        "570",
        "https://store.steampowered.com/app/1245620/ELDEN_RING/"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("steadydata/steam-app-details").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "apps": [
        "570",
        "https://store.steampowered.com/app/1245620/ELDEN_RING/",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("steadydata/steam-app-details").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "apps": [
    "570",
    "https://store.steampowered.com/app/1245620/ELDEN_RING/"
  ]
}' |
apify call steadydata/steam-app-details --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,steadydata/steam-app-details"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/2YRDNProttCVIAIVI/builds/9oNRGrO5u8oxdEGdS/openapi.json
