Skip to main content
POST
/
api
/
apkpure
/
apps
/apkpure/apps
curl --request POST \
  --url https://api.anysite.io/api/apkpure/apps \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package_name": "<string>",
  "timeout": 300
}
'
[
  {
    "package_name": "<string>",
    "name": "<string>",
    "@type": "@apkpure_app",
    "version": "<string>",
    "version_code": "<string>",
    "rating": 123,
    "developer": "<string>",
    "description": "<string>",
    "summary": "<string>",
    "changelog": "<string>",
    "category": "<string>",
    "tags": [],
    "content_rating": "<string>",
    "price_range": "<string>",
    "status": "<string>",
    "signature": "<string>",
    "updated_at": "<string>",
    "published_at": "<string>",
    "google_play_url": "<string>",
    "image": "<string>",
    "screenshots": [],
    "permissions": [],
    "download": {
      "@type": "@apkpure_app_download",
      "type": "<string>",
      "size": 123,
      "sha1": "<string>",
      "download_url": "<string>",
      "torrent_url": "<string>",
      "updated_at": "<string>"
    }
  }
]

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

package_name
string
required
name
string
required
@type
string
default:@apkpure_app
version
string | null
version_code
string | null
rating
number | null
developer
string | null
description
string | null
summary
string | null
changelog
string | null
category
string | null
tags
ApkpureAppTag · object[]
content_rating
string | null
price_range
string | null
status
string | null
signature
string | null
updated_at
string | null
published_at
string | null
google_play_url
string | null
image
string | null
screenshots
string[]
permissions
string[]
download
ApkpureAppDownload · object