Steam Games Scraper
Pricing
$2.00 / 1,000 item returneds
Steam Games Scraper
Scrape Steam games with no API key. Search games by name, get full store details (price, genres, developers, Metacritic, platforms) enriched with SteamSpy owner/review stats, or pull recent player reviews. Normalized JSON, three modes.
Pricing
$2.00 / 1,000 item returneds
Rating
0.0
(0)
Developer
Dami's Studio
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 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)