google-play-reviews
Retrieve and analyze Google Play app reviews to gain insights into user feedback, ratings, and developer responses. Customize by language, country, and sort order to track app performance and market trends.
Instructions
Get reviews for a Google Play app. Returns an array of reviews with:
- id: Review ID string
- userName: Reviewer's name
- userImage: Reviewer's profile image URL
- date: Review date (ISO string)
- score: Rating (1-5)
- scoreText: Rating display text
- title: Review title
- text: Review content
- url: Review URL
- version: App version reviewed
- thumbsUp: Number of thumbs up votes
- replyDate: Developer reply date (if any)
- replyText: Developer reply content (if any)
- criterias: Array of rating criteria (if any)
Note: Reviews are returned in the specified language. The total review count shown in Google Play refers to ratings, not written reviews.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | Package name of the app (e.g., 'com.mojang.minecraftpe') | |
country | No | Country code (default: us) | us |
lang | No | Language code for reviews (default: en) | en |
nextPaginationToken | No | Token for fetching next page of reviews | |
num | No | Number of reviews to retrieve (default: 100). Ignored if paginate is true. | |
paginate | No | Enable pagination with 150 reviews per page | |
sort | No | Sort order: newest, rating, or helpfulness (default: newest) | newest |