get_steam_review
Retrieve detailed Steam game reviews and metadata for any application ID. Filter by language, review type, purchase source, and time range to analyze user feedback effectively.
Instructions
Retrieves reviews and game information for a specific Steam application. Returns formatted review data including review scores, positive/negative counts, review texts, and basic game information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appid | Yes | Steam application ID | |
cursor | No | reviews are returned in batches of 20, so pass * for the first set, then the value of cursor that was returned in the response for the next set, etc. Note that cursor values may contain characters that need to be URLEncoded for use in the querystring. | * |
day_range | No | range from now to n days ago to look for helpful reviews. Only applicable for the all filter. | |
filter | No | recent: sorted by creation time, updated: sorted by last updated time,all: (default) sorted by helpfulness, with sliding windows based on day_range parameter, will always find results to return. | all |
language | No | Language filter (e.g. english, french, schinese). Default is all languages. | all |
num_per_page | No | number of reviews to get, max 100, default 50 | |
purchase_type | No | all: all reviews, non_steam_purchase: reviews written by users who did not pay for the product on Steam,steam: reviews written by users who paid for the product on Steam (default) | steam |
review_type | No | all:all reviews (default), positive: only positive reviews, negative: only negative reviews | all |