Endpoint Playground
Test Crawlora's Get Google Play ratings by device 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/ratings?app_id=<app_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| app_id | string | Yes | Google Play package name | |
| country | string | No | Two-letter storefront country code | |
| lang | string | No | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": [
{
"device": "phone",
"score": 4.7,
"score_text": "4.7",
"ratings": 326841,
"reviews": 8946,
"histogram": {
"1": 17372,
"2": 6514,
"3": 2170,
"4": 24973,
"5": 275802
}
},
{
"device": "tablet",
"score": 4,
"score_text": "4.0",
"ratings": 29051,
"reviews": 4667,
"histogram": {
"1": 4898,
"2": 1604,
"3": 928,
"4": 2533,
"5": 19085
}
},
{
"device": "chromebook",
"score": 4.3,
"score_text": "4.3",
"ratings": 18,
"reviews": 7,
"histogram": {
"1": 1,
"2": 0,
"3": 2,
"4": 5,
"5": 10
}
}
]
}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 the ratings-and-reviews breakdown Google Play shows under the details page's device tabs, one entry each for phone, tablet, and Chromebook. Defaults: `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": [
{
"device": "phone",
"score": 4.7,
"score_text": "4.7",
"ratings": 326841,
"reviews": 8946,
"histogram": {
"1": 17372,
"2": 6514,
"3": 2170,
"4": 24973,
"5": 275802
}
},
{
"device": "tablet",
"score": 4,
"score_text": "4.0",
"ratings": 29051,
"reviews": 4667,
"histogram": {
"1": 4898,
"2": 1604,
"3": 928,
"4": 2533,
"5": 19085
}
},
{
"device": "chromebook",
"score": 4.3,
"score_text": "4.3",
"ratings": 18,
"reviews": 7,
"histogram": {
"1": 1,
"2": 0,
"3": 2,
"4": 5,
"5": 10
}
}
]
}curl "https://api.crawlora.net/api/v1/googleplay/ratings?app_id=<app_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"