Google Play app data API
Extract Google Play Store app metadata including description, ratings, download count, screenshots, and developer info for market research.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/playstore/detail', {
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();
console.log(data.app.name, data.app.rating, data.app.downloads);Everything you need for reliable play store detail extraction.
Get app name, description, icon, screenshots, and category.
Access overall rating, rating count, and rating distribution.
Get download count, install size, and last update date.
Extract developer name, email, website, and other apps.
Access current version, what's new, and update history.
Get price, in-app purchases, and subscription details.
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": {
"app": {
"appId": "com.google.android.apps.maps",
"name": "Google Maps",
"description": "Navigate your world faster...",
"icon": "https://...",
"rating": 4.3,
"ratingCount": 15000000,
"downloads": "10B+",
"developer": "Google LLC",
"category": "Travel & Local",
"lastUpdated": "2024-01-10",
"version": "11.108.0"
},
"timing": { "total": 1500 },
"creditsUsed": 1,
"creditsRemaining": 99
}
}Common applications for Play Store Detail.
Analyze app market trends and opportunities.
Track competitor app metrics and updates.
Monitor app store optimization metrics.
Due diligence on app-based businesses.
Everything you need to know about the Play Store Detail API.
App name, description, icon, screenshots, rating, download count, developer info, version, update history, pricing, and more.
This endpoint returns current app data. For historical tracking, make periodic requests and store the results.
The lang parameter supports 40+ languages for localized app descriptions and metadata.
The response includes a list of similar apps recommended by Google Play.
Get 100 free credits to test the API. No credit card required.