Method: reviews.list

  • This API call lists all reviews for a specified app.

  • The request uses a GET method with the application's package name as a path parameter.

  • Optional query parameters like token, startIndex, maxResults, and translationLanguage can be used to filter and paginate the results.

  • The request body should be empty.

  • The response body contains a list of reviews, pagination information, and page details.

  • This API call requires the https://www.googleapis.com/auth/androidpublisher authorization scope.

Lists all reviews.

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:

JSON representation
{
  "reviews": [
    {
      object (Review)
    }
  ],
  "tokenPagination": {
    object (TokenPagination)
  },
  "pageInfo": {
    object (PageInfo)
  }
}
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