curl --request POST \
--url https://api.crawlkit.com/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": "<unknown>",
"summary": "<unknown>",
"description": "<unknown>",
"screenshots": [
{
"url": "<string>",
"width": "<unknown>",
"height": "<unknown>"
}
],
"category": "<unknown>",
"categoryId": "<unknown>",
"rating": "<unknown>",
"ratingCount": "<unknown>",
"reviewCount": "<unknown>",
"ratingDistribution": {
"1": 123,
"2": 123,
"3": 123,
"4": 123,
"5": 123
},
"installs": "<unknown>",
"installsExact": "<unknown>",
"free": true,
"price": "<unknown>",
"currency": "<unknown>",
"contentRating": "<unknown>",
"contentRatingDescription": "<unknown>",
"developer": {
"name": "<string>",
"id": "<unknown>",
"website": "<unknown>",
"email": "<unknown>",
"phone": "<unknown>",
"address": "<unknown>"
},
"releaseDate": "<unknown>",
"lastUpdate": "<unknown>",
"version": "<unknown>",
"androidVersion": "<unknown>",
"whatsNew": "<unknown>",
"permissions": [
{
"name": "<string>",
"icon": "<unknown>",
"details": [
"<string>"
]
}
],
"dataSafety": {
"sharedData": [
"<string>"
],
"collectedData": [
"<string>"
],
"encrypted": true,
"deletable": true
},
"privacyPolicy": "<unknown>",
"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.com/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": "<unknown>",
"summary": "<unknown>",
"description": "<unknown>",
"screenshots": [
{
"url": "<string>",
"width": "<unknown>",
"height": "<unknown>"
}
],
"category": "<unknown>",
"categoryId": "<unknown>",
"rating": "<unknown>",
"ratingCount": "<unknown>",
"reviewCount": "<unknown>",
"ratingDistribution": {
"1": 123,
"2": 123,
"3": 123,
"4": 123,
"5": 123
},
"installs": "<unknown>",
"installsExact": "<unknown>",
"free": true,
"price": "<unknown>",
"currency": "<unknown>",
"contentRating": "<unknown>",
"contentRatingDescription": "<unknown>",
"developer": {
"name": "<string>",
"id": "<unknown>",
"website": "<unknown>",
"email": "<unknown>",
"phone": "<unknown>",
"address": "<unknown>"
},
"releaseDate": "<unknown>",
"lastUpdate": "<unknown>",
"version": "<unknown>",
"androidVersion": "<unknown>",
"whatsNew": "<unknown>",
"permissions": [
{
"name": "<string>",
"icon": "<unknown>",
"details": [
"<string>"
]
}
],
"dataSafety": {
"sharedData": [
"<string>"
],
"collectedData": [
"<string>"
],
"encrypted": true,
"deletable": true
},
"privacyPolicy": "<unknown>",
"timing": {
"total": 123
},
"creditsUsed": 123,
"creditsRemaining": 123
}
}API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)
Was this page helpful?