Play Store Reviews

POST1 Credit
https://api.crawlkit.sh/v1/crawl/playstore/reviews

Extract Google Play Store app reviews with ratings, review text, author info, and developer responses for app analytics and sentiment analysis.

Try on Playground

Authentication

Send your Crawlkit API key as a Bearer token in the Authorization header.

Authorization: Bearer ck_your_api_key

Request Parameters

Send these JSON body fields in your request payload.

NameTypeDescription
appIdstringStore app identifier.
options.langstringLanguage code.

Example Request

Use direct HTTP requests against the public API base URL.

Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/playstore/reviews', {2  method: 'POST',3  headers: {4    'Authorization': 'Bearer YOUR_API_KEY',5    'Content-Type': 'application/json'6  },7  body: JSON.stringify({8    appId: 'com.google.android.apps.maps',9    options: {10      lang: 'en',11    }12  })13});14 15const { data } = await response.json();16data.reviews.forEach(r => console.log(r.rating, r.text));

Response

Success (200 OK): Returns service-specific structured payload.

Success response (200 OK)
1{2  "success": true,3  "data": {4    "appId": "com.google.android.apps.maps",5    "reviews": [6      {7        "id": "gp:AOqpTOH1234567890",8        "username": "John D.",9        "userAvatar": "https://play-lh.googleusercontent.com/...",10        "rating": 5,11        "text": "Best navigation app ever!",12        "date": 1705276800,13        "thumbsUp": 42,14        "developerReply": {15          "author": "Google LLC",16          "text": "Thanks for the feedback!",17          "date": 170536320018        },19        "appVersion": "11.123.0101"20      }21    ],22    "pagination": {23      "nextCursor": "CAESEwgDEhA...",24      "hasMore": true25    },26    "timing": { "total": 2100 },27    "creditsUsed": 1,28    "creditsRemaining": 9929  }30}