get_steam_review
Retrieve Steam game reviews and statistics by application ID to analyze user feedback and game information.
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 | |
| 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 |
| day_range | No | range from now to n days ago to look for helpful reviews. Only applicable for the all filter. | |
| 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. | * |
| review_type | No | all:all reviews (default), positive: only positive reviews, negative: only negative reviews | all |
| 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 |
| num_per_page | No | number of reviews to get, max 100, default 50 |