Endpoint Playground
Test Crawlora's Google Play Reviews API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/googleplay/reviews?app_id=com.openai.chatgpt&sort=newest&num=100&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| app_id | string | Yes | com.openai.chatgpt | Google Play app id |
| sort | string | No | newest | Sort: helpfulness, newest, rating |
| num | integer | No | 100 | Number of reviews |
| country | string | No | us | Two-letter country code |
| lang | string | No | en | Two-letter language code |
| paginate | boolean | No | Only fetch the requested page | |
| next_pagination_token | string | No | Token from a previous response |
{
"code": 200,
"msg": "OK",
"data": {
"data": [
{
"id": "5b4e4d89-ce22-4f13-b676-bb3a7aafe278",
"user_name": "Play User",
"user_image": "https://play-lh.googleusercontent.com/a-/sample",
"date": "2026-02-18T12:34:56Z",
"score": 5,
"score_text": "5",
"url": "https://play.google.com/store/apps/details?id=com.openai.chatgpt&reviewId=5b4e4d89-ce22-4f13-b676-bb3a7aafe278",
"title": null,
"text": "Very useful for daily work.",
"reply_text": null,
"version": "1.2026.056",
"thumbs_up": 42,
"criterias": null
}
],
"next_pagination_token": "CscBIr4BAb_yELvAqtSacgExc3y_bO88_b1Q"
}
}Public Playground
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.
Returns one or more pages of app reviews. Set `paginate=true` to fetch only the requested page.
{
"code": 200,
"msg": "OK",
"data": {
"data": [
{
"id": "5b4e4d89-ce22-4f13-b676-bb3a7aafe278",
"user_name": "Play User",
"user_image": "https://play-lh.googleusercontent.com/a-/sample",
"date": "2026-02-18T12:34:56Z",
"score": 5,
"score_text": "5",
"url": "https://play.google.com/store/apps/details?id=com.openai.chatgpt&reviewId=5b4e4d89-ce22-4f13-b676-bb3a7aafe278",
"title": null,
"text": "Very useful for daily work.",
"reply_text": null,
"version": "1.2026.056",
"thumbs_up": 42,
"criterias": null
}
],
"next_pagination_token": "CscBIr4BAb_yELvAqtSacgExc3y_bO88_b1Q"
}
}curl "https://api.crawlora.net/api/v1/googleplay/reviews?app_id=<app_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"