v48

latestOpenAPI 3.0.0raw.githubusercontent.com2025-12-0297180624.8 KB
Android

List pkg simple

A faster endpoint to quickly retrieve basic pkg information. This API provides better performance for scenarios where you need to get essential pkg details quickly.

get/boxes/{boxId}/android/packages/simple

Path parameters

boxIdstring required
Example:c9bdc193-b54b-4ddb-a035-5ac0c598d32d

Box ID

Query parameters

pkgTypestring[]

system or thirdParty, default is thirdParty

[
  "thirdParty"
]

Response

Android pkg simple list

Example response

{
  "data": [
    {
      "packageName": "com.google.android.apps.googlevoice",
      "apkPath": "/data/app/com.google.android.apps.googlevoice-1/base.apk",
      "pkgType": "thirdParty"
    },
    {
      "packageName": "com.android.chrome",
      "apkPath": "/data/app/com.android.chrome-2/base.apk",
      "pkgType": "thirdParty"
    }
  ]
}