Pricing
$2.00 / 1,000 item returneds
Steam Games Scraper
Scrapes Steam game data without an API key: search games by name, pull full store details (price, genres, developers, Metacritic, platforms) plus SteamSpy owner/review stats, or fetch recent player reviews. Returns normalized JSON for catalog, pricin
Pricing
$2.00 / 1,000 item returneds
Rating
5.0
(1)
Developer
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
7 days ago
Last modified
Categories
Share
Scrape Steam games using public, no-key endpoints โ no login, no API key. Three modes, normalized JSON output, charged per successful row only.
Modes
| Mode | Needs | Returns |
|---|---|---|
search | query (game name) | { appId, name, icon } |
app | appIds (numeric ids) | full store details + SteamSpy stats |
reviews | appIds (numeric ids) | recent player reviews |
Input
| Field | Type | Default | Notes |
|---|---|---|---|
mode | string | search | search | app | reviews |
query | string | โ | game name (search mode) |
appIds | array of numeric ids | โ | e.g. ["400","620"] (app/reviews modes) |
maxItems | integer | 50 | max output rows |
proxyConfiguration | object | { "useApifyProxy": false } | optional; the APIs are public so a proxy is usually unnecessary |
Typical flow: run search to find app ids, then app and/or reviews with those ids.
Output
search โ { appId, name, icon }
app โ { appId, name, type, isFree, price, discountPct, developers, publishers, genres, categories, releaseDate, metacriticScore, recommendations, owners, positiveReviews, negativeReviews, shortDescription, headerImage, platforms, url }
reviews โ { appId, reviewId, review, votedUp, votesUp, playtimeForeverMin, gamesOwned, createdAt, url }
url is always https://store.steampowered.com/app/{appId}. Successful rows are flagged ok:true. Failures/empty results are pushed as ok:false diagnostic rows (errorCode of BAD_INPUT / NO_RESULTS / NOT_FOUND / RATE_LIMITED / NETWORK) and are never charged.
Data sources
- Name search โ
steamcommunity.com/actions/SearchApps - App details โ
store.steampowered.com/api/appdetails - Owner/review stats โ
steamspy.com/api.php - Reviews โ
store.steampowered.com/appreviews(cursor-paginated)
