Google Play review scraper
Extract Google Play Store app reviews with ratings, review text, author info, and developer responses for app analytics and sentiment analysis.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/playstore/reviews', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
appId: 'com.google.android.apps.maps',
options: {
lang: 'en',
timeout: 30000
}
})
});
const { data } = await response.json();
data.reviews.forEach(r => console.log(r.rating, r.text));Everything you need for reliable play store reviews extraction.
Get full review text, rating (1-5 stars), and helpful vote count.
Access reviewer name, profile picture, and review history.
Retrieve developer replies to reviews with timestamps.
Use cursor-based pagination to fetch all reviews incrementally.
Filter reviews by language with 40+ supported languages.
Access review date and last update time for trend analysis.
Get started in minutes with our simple API.
Sign up for free and get your API key instantly. No credit card required.
Use our simple REST API with your favorite programming language.
Receive clean JSON responses ready to use in your application.
Get clean, structured JSON data with every request. Our API returns comprehensive data including status codes, timing information, and your remaining credits.
{
"success": true,
"data": {
"appId": "com.google.android.apps.maps",
"reviews": [
{
"id": "gp:AOqpTOH...",
"rating": 5,
"text": "Best navigation app ever!",
"author": "John D.",
"date": "2024-01-15",
"thumbsUp": 42,
"developerReply": "Thanks for the feedback!"
}
],
"nextCursor": "CAE...",
"timing": { "total": 2100 },
"creditsUsed": 1,
"creditsRemaining": 99
}
}Common applications for Play Store Reviews.
Analyze user feedback and identify pain points.
Study competitor app reviews and ratings.
Process reviews for NLP and sentiment scoring.
Extract feature requests from user feedback.
Everything you need to know about the Play Store Reviews API.
The appId is the package name from the Play Store URL. For example, in play.google.com/store/apps/details?id=com.google.android.apps.maps, the appId is com.google.android.apps.maps.
Use the nextCursor from the response in your next request to fetch the next page of reviews.
We support 40+ languages including English, Spanish, German, French, Japanese, Korean, Chinese, and more.
Each request returns approximately 40-50 reviews. Use pagination to fetch more.
Get 100 free credits to test the API. No credit card required.