apkmirror.com APIwww.apkmirror.com ↗
Download the latest APK files for any app directly by retrieving current download URLs from APKMirror. Quickly access the most recent app versions available on the platform without manually searching the website.
curl -X GET 'https://api.parse.bot/scraper/e42793fb-c47d-4b49-87a5-6794a6de3495/get_latest_download_url' \ -H 'X-API-Key: $PARSE_API_KEY'
Gets the latest APK download URL for a specified app on APKMirror. Navigates through the app page, finds the latest release version, selects the first available variant, and returns the direct download link with its key parameter. By default, beta versions are skipped in favor of stable releases.
| Param | Type | Description |
|---|---|---|
| app_slug | string | The app slug in the format 'developer/app-name' as it appears in the APKMirror URL path (e.g. 'x-corp/twitter', 'google-inc/youtube', 'meta/instagram'). |
| include_beta | string | Whether to include beta versions when finding the latest release. Accepts 'true' or 'false'. |
{
"type": "object",
"fields": {
"version": "string - version identifier",
"app_name": "string - full app name with version as displayed on APKMirror",
"app_page_url": "string - URL of the app's main page on APKMirror",
"download_url": "string - direct download URL with authentication key",
"variant_page_url": "string - URL of the variant/APK detail page"
},
"sample": {
"version": "X 11.94.0-release.0",
"app_name": "X 11.94.0-release.0",
"app_page_url": "https://www.apkmirror.com/apk/x-corp/twitter/",
"download_url": "https://www.apkmirror.com/apk/x-corp/twitter/x-11-94-0-release-0-release/x-11-94-0-release-0-android-apk-download/download/?key=REDACTED_SECRET",
"variant_page_url": "https://www.apkmirror.com/apk/x-corp/twitter/x-11-94-0-release-0-release/x-11-94-0-release-0-android-apk-download/"
}
}About the apkmirror.com API
The apkmirror.com API on Parse exposes 1 endpoint for the publicly available data on www.apkmirror.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.