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

Choose one catalog endpoint for this request.

10 shown
GETapiKey3 credits/requestgoogleplay.reviewsResponseDocGooglePlay
GET /googleplay/reviews

Retrieve Google Play reviews

Returns one or more pages of app reviews. Set `paginate=true` to fetch only the requested page.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Required query parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

googleplay.reviews

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "id": "review-1",
      "user_name": "Play User",
      "score": 5,
      "content": "Very useful for daily work.",
      "thumbs_up_count": 42
    }
  ]
}

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>"