Steam API Python Client
Extract Steam data with our Steam API Python client. Get programmatic access to recent and all reviews, supported languages, supported platforms, genres and popular tags, prices and deals, game information, and more using simple Python code. Start free, no credit card required.

Trusted by industry leaders all over the world
Integrate our Steam API
The Apify API client for Python is the official library that allows you to use Steam API in Python, providing convenience functions and automatic retries on errors. Get started with simple pip installation and robust error handling built-in.
Python
JavaScript
HTTP
MCP
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {}9
10# Run the Actor and wait for it to finish11run = client.actor("m0uka/steam-store-scraper").call(run_input=run_input)12
13# Fetch and print Actor results from the run's dataset (if there are any)14print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])15for item in client.dataset(run["defaultDatasetId"]).iterate_items():16    print(item)17
18# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startGet data with Steam API Python client
Use our Python API client to extract Steam Store data by providing filtering options like "only on sale" or "only released" games. The API returns structured data, including comprehensive game details, pricing information, platform support, user reviews, and metadata crawled from Steam's front page and individual game pages in JSON format.
Input
{ "onlyOnSale": false, "onlyReleased": false}Output
{ "url": "<https://store.steampowered.com/app/1703340/The_Stanley_Parable_Ultra_Deluxe/?snr=1_4_4__145>", "sale": false, "price": "21,99€", "title": "The Stanley Parable: Ultra Deluxe", "genres": [  "Adventure",  "Casual",  "Indie" ], "features": [  "Single-player",  "Steam Achievements",  "Full controller support" ], "languages": {  "French": {   "sound": false,   "interface": true,   "subtitles": true  },  "German": {   "sound": false,   "interface": true,   "subtitles": true  },  "English": {   "sound": true,   "interface": true,   "subtitles": true  },  "Italian": {   "sound": false,   "interface": true,   "subtitles": true  },  "Russian": {   "sound": false,   "interface": true,   "subtitles": true  },  "Spanish - Spain": {   "sound": false,   "interface": true,   "subtitles": true  } }, "saleUntil": null, "allReviews": "Very Positive", "comingSoon": false, "developers": [  "Crows Crows Crows" ], "publishers": [  "Crows Crows Crows" ], "description": "The Stanley Parable: Ultra Deluxe is an expanded re-imagining of 2013's The Stanley Parable. You will play as Stanley, and you will not play as Stanley. You will make a choice, and you will become powerless. You are not here to win. The Stanley Parable is a game that plays you.", "earlyAccess": false, "headerImage": "<https://cdn.akamai.steamstatic.com/steam/apps/1703340/header.jpg?t=1652303715>", "popularTags": [  "Multiple Endings",  "Comedy",  "Choices Matter",  "Walking Simulator",  "First-Person",  "Singleplayer",  "Narration",  "3D",  "Funny",  "Exploration",  "Adventure",  "Casual",  "Story Rich",  "Psychological Horror",  "Emotional",  "Mystery",  "Horror",  "Atmospheric",  "Game Development",  "Dark Humor" ], "releaseDate": "27 Apr, 2022", "recentReviews": "Very Positive", "salePercentage": null, "supportedPlatforms": [  "windows",  "linux",  "mac" ]}Sign up for Apify account01
Creating an account is quick and free — no credit card required. Your account gives you access to more than 5,000 scrapers and APIs.
Install Apify Python client02
Install the Apify Python client using pip: pip install apify-client. This package provides a simple interface to interact with Steam API from your Python applications.
Get your Apify API token03
Go to settings in the Apify console and navigate to the “API & Integrations” tab. There, create a new token and save it for later.
Integrate Steam API04
Navigate to the Steam API page and click on the API dropdown menu in the top right corner. In the dropdown menu, you can see API clients, API endpoints, and more. Use the provided Python code examples to integrate Steam API into your Python application.
Get your Steam data via API05
The Steam API returns structured JSON data that works perfectly with pandas, NumPy, and other Python data analysis libraries.

Why use Apify?
Never get blocked
Every plan (free included) comes with Apify Proxy, which is great for avoiding blocking and giving you access to geo-specific content.
Customers love us
We truly care about the satisfaction of our users and thanks to that we're one of the best-rated data extraction platforms on both G2 and Capterra.
Monitor your runs
With our latest monitoring features, you always have immediate access to valuable insights on the status of your web scraping tasks.
Export to various formats
Your datasets can be exported to any format that suits your data workflow, including Excel, CSV, JSON, XML, HTML table, JSONL, and RSS.
Integrate Apify to your workflow
You can integrate your Apify runs with platforms such as Zapier, Make, Keboola, Google Drive, or GitHub. Connect with practically any cloud service or web app.
Large developer community
Apify is built by developers, so you'll be in good hands if you have any technical questions. Our Discord server is always here to help!
Python-ready Steam data extraction
Connect to hundreds of apps right away using ready-made integrations, or set up your own with webhooks and our API.
Steam does not provide an official Python API client for accessing comprehensive store data like game details, reviews, and pricing information. While Steam has some limited APIs for developers, they don't offer an official Python client library for the extensive store data that this scraper provides. Our Steam Store Scraper fills this gap by extracting publicly available information from Steam's web pages.
Yes! You can try the Steam Store Scraper Python API client for free with Apify's generous free tier. New users get free compute units to test the Python API client and see results before committing to a paid plan. The scraper is lightweight, using only ~0.025 compute units per scrape, making the Python API client very cost-effective for testing and small-scale usage.
You can extract comprehensive game data through Python API calls including titles, descriptions, release dates, pricing and sale information, supported platforms (Windows, Mac, Linux), features, genres, popular tags, supported languages with interface/sound/subtitle details, recent and all-time review scores, developer and publisher information, and header images. All data is returned in structured JSON format and can be converted to CSV, XML, or Excel using Python libraries.
Yes, it's completely legal to scrape Steam data using a Python API client. This Python client only accesses publicly available information that's displayed on Steam's website. It doesn't bypass any authentication, violate terms of service, or access private data. The Python API client uses standard web scraping practices and respects website structure, making it a legitimate tool for gathering public Steam Store information.
Getting started with our Steam Python API is easy — simply create a free Apify account, get your API token, and start using the Steam API in Python, JavaScript, CLI, cURL, OpenAPI, or MCP.