Skip to content

APK Downloader

This API allows you to search for Android applications and retrieve direct download links. It fetches the latest version available from the internet, regardless of regional restrictions and app store requirements.

POST /api/v1/apk

The following parameters are accepted in the request body:

FieldTypeRequiredDescription
querystringYesThe app name

Choose your preferred method to interact with the APK API:

Terminal window
curl -X POST https://heavstal.com.ng/api/v1/apk \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"query": "Telegram"}'
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"name": "Telegram",
"package": "org.telegram.messenger",
"version": "10.6.1",
"size": "75.4 MB",
"icon": "https://pool.img.aptoide.com/...",
"download_link": "https://pool.apk.aptoide.com/..."
}
}