fetch_reviews
Retrieve actual Steam user reviews using filters for sentiment, purchase type, language, and time period. Pagination and review bomb filtering enable targeted feedback analysis.
Instructions
Fetch actual user reviews for a Steam game with advanced filtering and pagination support. Returns review text, author info, timestamps, and voting data. Supports time-bounded queries and review bomb filtering.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | Steam AppID of the game | |
| limit | No | Number of reviews to fetch (default: 20, max: 100) | |
| cursor | No | Pagination cursor from previous response. Omit or use an empty string for the first page. | |
| filter | No | Review filter (default: all) | |
| dayRange | No | Only include reviews from the last N days (e.g., 30, 90, 365). Omit or use 0 for all time. | |
| language | No | Language code (e.g., "english", "schinese", Steam format) | |
| reviewType | No | Filter by review sentiment (default: all) | |
| purchaseType | No | Filter by purchase type (default: all) | |
| steamDeckOnly | No | Only include Steam Deck reviews (experimental, may not work reliably) | |
| filterOfftopicActivity | No | Filter out review bombing and off-topic activity (default: false to show all reviews) |