list_reviews
Fetches recent user reviews for your published app, including star ratings, comments, and device details, so you can monitor feedback and address issues promptly.
Instructions
List recent user reviews for an app, newest first. Each review has reviewId, authorName and comments[] containing the userComment (text, starRating 1-5, device, androidOsVersion, appVersionCode/Name, thumbsUp/DownCount, lastModified) and any developerComment already posted. Note the Google Play API only returns reviews created or modified in the last 7 days, only reviews that include written text, and only for production releases. Use the returned reviewId with get_review or reply_to_review.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max reviews to return (default: 50) | |
| package_name | No | App package name, e.g. 'com.acme.app' (defaults to GOOGLE_PLAY_PACKAGE_NAME) | |
| translation_language | No | BCP-47 language code, e.g. 'en'. When set, Google returns translated review text alongside the original. |