Skip to main content
POST
/
api
/
apkpure
/
apps
/
reviews
/apkpure/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/apkpure/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package_name": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@apkpure_review",
    "id": "<string>",
    "type": "<string>",
    "text": "<string>",
    "rating": 123,
    "author": {
      "@type": "@apkpure_review_author",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>"
    },
    "device": "<string>",
    "created_at": "<string>",
    "upvote_count": 123,
    "vote_count": 123,
    "reply_count": 0,
    "replies": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
package_name
string
required

Android package name, or an APKPure/Google Play app URL

Minimum string length: 1
Examples:

"com.whatsapp"

"com.spotify.music"

"https://apkpure.com/whatsapp/com.whatsapp"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@apkpure_review
id
string | null
type
string | null
text
string | null
rating
integer | null
author
ApkpureReviewAuthor · object
device
string | null
created_at
string | null
upvote_count
integer | null
vote_count
integer | null
reply_count
integer
default:0
replies
ApkpureReviewReply · object[]