Skip to main content
GET
/
apps
/
list
List Apps
curl --request GET \
  --url https://api.docketqa.com/apps/list \
  --header 'X-API-KEY: <api-key>'
List every mobile app in your company, each with its current active build inlined.

Query parameters

platform
string
"android" or "ios". Omit for both.

Response

Returns { apps }, ordered by created_at descending. Each app has id, name, platform, build_count, current_build (or null), created_at, updated_at.
{
  "apps": [
    {
      "id": 17, "name": "Acme Mobile", "platform": "android", "build_count": 3,
      "current_build": {
        "id": 51, "name": "v1.2.0", "arch": "arm64",
        "file": { "file_name": "Acme_Mobile_android_20260427_180501.apk", "file_size": 92012544 }
      }
    }
  ]
}

Get a single app

GET /apps/{id}
Same shape as a list entry plus an inline builds array containing every build for the app — useful when you need the full version history.
curl https://api.docketqa.com/apps/17 -H "X-API-KEY: your-api-key"