Skip to main content
POST
/
crawl
/
playstore
/
detail
PlayStore Detail
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
  }
}

Authorizations

Authorization
string
header
required

API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)

Body

application/json
appId
string
required

Google Play app package ID (e.g., "com.askipo.patient")

Required string length: 1 - 200
options
object

Response

Default Response

success
enum<boolean>
required
Available options:
true,
false
data
object
required