Play Store Detail
Extract Google Play Store app metadata including description, ratings, download count, screenshots, and developer info for market research.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
appId | string | Store app identifier. |
options.lang | string | Language 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/detail', {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();16console.log(data.appName, data.rating, data.installs);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 "appName": "Google Maps",6 "icon": "https://play-lh.googleusercontent.com/...",7 "summary": "Navigate your world faster...",8 "description": "Navigate your world faster...",9 "screenshots": [10 {11 "url": "https://play-lh.googleusercontent.com/...",12 "width": 1080,13 "height": 192014 }15 ],16 "category": "Travel & Local",17 "categoryId": "TRAVEL_AND_LOCAL",18 "rating": 4.3,19 "ratingCount": 15000000,20 "reviewCount": 812345,21 "ratingDistribution": {22 "5": 11000000,23 "4": 1900000,24 "3": 800000,25 "2": 400000,26 "1": 90000027 },28 "installs": "10B+",29 "installsExact": 10000000000,30 "free": true,31 "price": null,32 "currency": "USD",33 "contentRating": "Everyone",34 "contentRatingDescription": "No restrictions",35 "developer": {36 "name": "Google LLC",37 "id": "5700313618786177705",38 "website": "https://www.google.com/maps",39 "email": "apps-help@google.com",40 "phone": null,41 "address": "1600 Amphitheatre Parkway, Mountain View, CA 94043"42 },43 "releaseDate": 1246406400,44 "lastUpdate": 1704844800,45 "version": "11.123.0101",46 "androidVersion": "8.0 and up",47 "whatsNew": "Thanks for using Google Maps.",48 "permissions": [],49 "dataSafety": null,50 "privacyPolicy": "https://policies.google.com/privacy",51 "timing": { "total": 1500 },52 "creditsUsed": 1,53 "creditsRemaining": 9954 }55}