curl --request POST \
--url https://api.crawlkit.sh/v1/crawl/playstore/detail \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"appId": "<string>",
"options": {
"lang": "en",
"timeout": 30000
}
}
'{
"success": true,
"data": {
"appId": "<string>",
"appName": "<string>",
"icon": "<string>",
"summary": "<string>",
"description": "<string>",
"screenshots": [
{
"url": "<string>",
"width": 123,
"height": 123
}
],
"category": "<string>",
"categoryId": "<string>",
"rating": 123,
"ratingCount": 123,
"reviewCount": 123,
"ratingDistribution": {
"1": 123,
"2": 123,
"3": 123,
"4": 123,
"5": 123
},
"installs": "<string>",
"installsExact": 123,
"free": true,
"price": "<string>",
"currency": "<string>",
"contentRating": "<string>",
"contentRatingDescription": "<string>",
"developer": {
"name": "<string>",
"id": "<string>",
"website": "<string>",
"email": "<string>",
"phone": "<string>",
"address": "<string>"
},
"releaseDate": 123,
"lastUpdate": 123,
"version": "<string>",
"androidVersion": "<string>",
"whatsNew": "<string>",
"permissions": [
{
"name": "<string>",
"icon": "<string>",
"details": [
"<string>"
]
}
],
"dataSafety": {
"sharedData": [
"<string>"
],
"collectedData": [
"<string>"
],
"encrypted": true,
"deletable": true
},
"privacyPolicy": "<string>",
"timing": {
"total": 123
},
"creditsUsed": 123,
"creditsRemaining": 123
}
}Fetches full details for a Google Play Store app including ratings, screenshots, developer info, permissions, and more. Costs 1 credit.
curl --request POST \
--url https://api.crawlkit.sh/v1/crawl/playstore/detail \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"appId": "<string>",
"options": {
"lang": "en",
"timeout": 30000
}
}
'{
"success": true,
"data": {
"appId": "<string>",
"appName": "<string>",
"icon": "<string>",
"summary": "<string>",
"description": "<string>",
"screenshots": [
{
"url": "<string>",
"width": 123,
"height": 123
}
],
"category": "<string>",
"categoryId": "<string>",
"rating": 123,
"ratingCount": 123,
"reviewCount": 123,
"ratingDistribution": {
"1": 123,
"2": 123,
"3": 123,
"4": 123,
"5": 123
},
"installs": "<string>",
"installsExact": 123,
"free": true,
"price": "<string>",
"currency": "<string>",
"contentRating": "<string>",
"contentRatingDescription": "<string>",
"developer": {
"name": "<string>",
"id": "<string>",
"website": "<string>",
"email": "<string>",
"phone": "<string>",
"address": "<string>"
},
"releaseDate": 123,
"lastUpdate": 123,
"version": "<string>",
"androidVersion": "<string>",
"whatsNew": "<string>",
"permissions": [
{
"name": "<string>",
"icon": "<string>",
"details": [
"<string>"
]
}
],
"dataSafety": {
"sharedData": [
"<string>"
],
"collectedData": [
"<string>"
],
"encrypted": true,
"deletable": true
},
"privacyPolicy": "<string>",
"timing": {
"total": 123
},
"creditsUsed": 123,
"creditsRemaining": 123
}
}API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)
Was this page helpful?