Skip to main content
POST
/
crawl
/
playstore
/
reviews
PlayStore Reviews
curl --request POST \
  --url https://api.crawlkit.com/v1/crawl/playstore/reviews \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "appId": "<string>",
  "cursor": null,
  "options": {
    "lang": "tr",
    "timeout": 30000
  }
}
'
{
  "success": true,
  "data": {
    "appId": "<string>",
    "reviews": [
      {
        "id": "<string>",
        "username": "<string>",
        "userAvatar": "<unknown>",
        "rating": 3,
        "text": "<string>",
        "date": "<unknown>",
        "thumbsUp": 123,
        "developerReply": {
          "author": "<string>",
          "text": "<string>",
          "date": 123
        },
        "appVersion": "<unknown>"
      }
    ],
    "pagination": {
      "nextCursor": "<unknown>",
      "hasMore": true
    },
    "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
cursor
string | null

Pagination cursor from previous response (null for first page)

options
object

Response

Default Response

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