Skip to main content
POST
/
api
/
apkpure
/
apps
/
versions
/apkpure/apps/versions
curl --request POST \
  --url https://api.anysite.io/api/apkpure/apps/versions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package_name": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "version_name": "<string>",
    "@type": "@apkpure_app_version",
    "version_code": "<string>",
    "signature": "<string>",
    "rating": 123,
    "developer": "<string>",
    "changelog": "<string>",
    "updated_at": "<string>",
    "downloads": []
  }
]

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"

count
integer
required

Max number of versions to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

version_name
string
required
@type
string
default:@apkpure_app_version
version_code
string | null
signature
string | null
rating
number | null
developer
string | null
changelog
string | null
updated_at
string | null
downloads
ApkpureAppDownload · object[]