Method: reviews.list
Stay organized with collections
Save and categorize content based on your preferences.
HTTP request
GET https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/reviews
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
packageName |
string
Package name of the app.
|
Query parameters
Parameters |
token |
string
Pagination token. If empty, list starts at the first review.
|
startIndex |
integer (uint32 format)
The index of the first element to return.
|
maxResults |
integer (uint32 format)
How many results the list operation should return.
|
translationLanguage |
string
Language localization code.
|
Request body
The request body must be empty.
Response body
Response listing reviews.
If successful, the response body contains data with the following structure:
Fields |
reviews[] |
object (Review )
reviews.list of reviews.
|
tokenPagination |
object (TokenPagination )
Pagination token, to handle a number of products that is over one page.
|
pageInfo |
object (PageInfo )
Information about the current page.
|
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/androidpublisher
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-05-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-21 UTC."],[[["\u003cp\u003eThis endpoint lists all reviews for a specified Android application package.\u003c/p\u003e\n"],["\u003cp\u003eIt supports pagination using \u003ccode\u003etoken\u003c/code\u003e, \u003ccode\u003estartIndex\u003c/code\u003e, and \u003ccode\u003emaxResults\u003c/code\u003e query parameters.\u003c/p\u003e\n"],["\u003cp\u003eThe response includes a list of reviews, pagination information, and the next page token.\u003c/p\u003e\n"],["\u003cp\u003eAuthorization requires the \u003ccode\u003ehttps://www.googleapis.com/auth/androidpublisher\u003c/code\u003e OAuth scope.\u003c/p\u003e\n"]]],["This API retrieves a list of reviews for an app using a `GET` request to a specified URL, including the `packageName` as a path parameter. Optional query parameters include `token` for pagination, `startIndex`, `maxResults`, and `translationLanguage`. The request body must be empty. The successful response is a JSON object containing a `reviews` array, `tokenPagination` data, and `pageInfo`. This operation requires the `https://www.googleapis.com/auth/androidpublisher` authorization scope.\n"],null,["# Method: reviews.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Path parameters](#body.PATH_PARAMETERS)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.ReviewsListResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nLists all reviews.\n\n### HTTP request\n\n`GET https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/reviews`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|---------------|-----------------------------------|\n| `packageName` | `string` Package name of the app. |\n\n### Query parameters\n\n| Parameters ||\n|-----------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| `token` | `string` Pagination token. If empty, list starts at the first review. |\n| `startIndex` | `integer (`[uint32](https://developers.google.com/discovery/v1/type-format)` format)` The index of the first element to return. |\n| `maxResults` | `integer (`[uint32](https://developers.google.com/discovery/v1/type-format)` format)` How many results the list operation should return. |\n| `translationLanguage` | `string` Language localization code. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse listing reviews.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"reviews\": [ { object (/android-publisher/api-ref/rest/v3/reviews#Review) } ], \"tokenPagination\": { object (/android-publisher/api-ref/rest/v3/TokenPagination) }, \"pageInfo\": { object (/android-publisher/api-ref/rest/v3/PageInfo) } } ``` |\n\n| Fields ||\n|-------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `reviews[]` | `object (`[Review](/android-publisher/api-ref/rest/v3/reviews#Review)`)` reviews.list of reviews. |\n| `tokenPagination` | `object (`[TokenPagination](/android-publisher/api-ref/rest/v3/TokenPagination)`)` Pagination token, to handle a number of products that is over one page. |\n| `pageInfo` | `object (`[PageInfo](/android-publisher/api-ref/rest/v3/PageInfo)`)` Information about the current page. |\n\n### Authorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/androidpublisher`"]]