Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Retrieve Google Play reviews API Playground
Returns one or more pages of app reviews. Set `paginate=true` to fetch only the requested page.
GETapiKey3 credits/requestgoogleplay.reviewsResponseDocGooglePlay
Endpoint details
Returns one or more pages of app reviews. Set `paginate=true` to fetch only the requested page.
- Method
- GET
- Path
- /googleplay/reviews
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- GooglePlay
- Parameters
- 8 documented fields
Request parameters
app_id:querysort:querynum:querycountry:querylang:querypaginate:querynext_pagination_token:queryx-api-key:header
Response schema fields
codedatadata.datadata.data[].criteriasdata.data[].criterias[].criteriadata.data[].criterias[].ratingdata.data[].datedata.data[].iddata.data[].reply_datedata.data[].reply_textdata.data[].scoredata.data[].score_text
Sample response summary
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "review-1",
"user_name": "Play User",
"score": 5,
"content": "Very useful for daily work.",
"thumbs_up_count": 42
}
]
}cURL example
curl "https://api.crawlora.net/api/v1/googleplay/reviews?app_id=<app_id>" \
-H "x-api-key: <api-key>"