cURL
curl --request POST \ --url https://api.crawlkit.com/v1/crawl/playstore/reviews \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "appId": "<string>", "cursor": null, "options": { "lang": "tr", "timeout": 30000 } } '
{ "success": true, "data": { "appId": "<string>", "reviews": [ { "id": "<string>", "username": "<string>", "userAvatar": "<unknown>", "rating": 3, "text": "<string>", "date": "<unknown>", "thumbsUp": 123, "developerReply": { "author": "<string>", "text": "<string>", "date": 123 }, "appVersion": "<unknown>" } ], "pagination": { "nextCursor": "<unknown>", "hasMore": true }, "timing": { "total": 123 }, "creditsUsed": 123, "creditsRemaining": 123 } }
Fetches reviews for a Google Play Store app. Returns up to 20 reviews per page with pagination. Costs 1 credit per page.
API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)
Google Play app package ID (e.g., "com.askipo.patient")
1 - 200
Pagination cursor from previous response (null for first page)
Show child attributes
Default Response
true
false
Was this page helpful?