APK Downloader
Heavstal APK Engine allows you to search for Android applications and retrieve direct download links. It fetches the latest version available from the Aptoide network.
Endpoint
Section titled “Endpoint”POST /apk
Request Parameters
Section titled “Request Parameters”| Field | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | The app name (e.g. “Instagram” or “com.instagram.android”). |
Example Usage
Section titled “Example Usage”const res = await fetch('https://heavstal.com.ng/api/v1/apk', {method: 'POST',headers: { 'Content-Type': 'application/json', 'x-api-key': 'YOUR_API_KEY'},body: JSON.stringify({ query: 'Telegram'})});Successful Response
Section titled “Successful Response”{"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/..."}}