GooglePlay API endpoint
Retrieve Google Play reviews
Returns one or more pages of app reviews. Set `paginate=true` to fetch only the requested page.
GETapiKey3 credits/requestgoogleplay.reviewsResponseDoc
/googleplay/reviewsParameters
| Name | In | Type | Required | Enum | Example | Description |
|---|---|---|---|---|---|---|
| app_id | query | string | Yes | com.openai.chatgpt | Google Play app id | |
| sort | query | string | No | newest | Sort: helpfulness, newest, rating | |
| num | query | integer | No | 100 | Number of reviews | |
| country | query | string | No | us | Two-letter country code | |
| lang | query | string | No | en | Two-letter language code | |
| paginate | query | boolean | No | Only fetch the requested page | ||
| next_pagination_token | query | string | No | Token from a previous response | ||
| x-api-key | header | string | Yes | API key required |
Authentication
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Billing
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
- Credit cost
- 3 credits/request
- Charged response
- Successful 2xx responses
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
MCP
- MCP URL
- https://mcp.crawlora.net/mcp
- Tool name
- googleplay.reviews
- Transport
- Streamable HTTP
- Docs resource
- docs://index
Failure responses
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
Example response
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "review-1",
"user_name": "Play User",
"score": 5,
"content": "Very useful for daily work.",
"thumbs_up_count": 42
}
]
}Request schema
No body schema
Response schema
#/definitions/googleplay.reviewsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | googleplay.ReviewsResult | No | ||||
| data.data | array | No | ||||
| data.data[].criterias | array | No | ||||
| data.data[].criterias[].criteria | string | No | Accuracy | |||
| data.data[].criterias[].rating | integer | No | 5 | |||
| data.data[].date | string | No | 2026-02-18T12:34:56Z | |||
| data.data[].id | string | No | 5b4e4d89-ce22-4f13-b676-bb3a7aafe278 | |||
| data.data[].reply_date | string | No | 2026-02-20T08:00:00Z | |||
| data.data[].reply_text | string | No | Thanks for the feedback! | |||
| data.data[].score | integer | No | 5 | |||
| data.data[].score_text | string | No | 5 | |||
| data.data[].text | string | No | Very helpful for quick answers and brainstorming. | |||
| data.data[].thumbs_up | integer | No | 124 | |||
| data.data[].title | string | No | Great app | |||
| data.data[].url | string | No | https://play.google.com/store/apps/details?id=com.openai.chatgpt&reviewId=5b4e4d89-ce22-4f13-b676-bb3a7aafe278 | |||
| data.data[].user_image | string | No | https://play-lh.googleusercontent.com/a-/ALV-UjVsample | |||
| data.data[].user_name | string | No | Jane Doe | |||
| data.data[].version | string | No | 1.2026.056 | |||
| data.next_pagination_token | string | No | CscBIr4BAb_yELvAqtSacgExc3y_bO88_b1Q | |||
| msg | string | No | OK |
Example request
curl -X GET "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: <api-key>"
TypeScript fetch
const url = new URL("https://api.crawlora.net/api/v1/googleplay/reviews");
url.searchParams.set("app_id", "com.openai.chatgpt");
url.searchParams.set("sort", "newest");
url.searchParams.set("num", "100");
url.searchParams.set("country", "us");
url.searchParams.set("lang", "en");
const headers = new Headers();
headers.set("x-api-key", "<api-key>");
const response = await fetch(url, {
method: "GET",
headers,
});
const payload = await response.json();