App Builds

List App Builds

Returns a paginated list of build artifacts for an app, newest first, with optional platform, status, and creation-date filters.

get/app_builds

Query parameters

app_idstring required

The app to list builds for, prefixed app_.

platform'ios' | 'android' | 'web'

Filter builds by target platform.

status'draft' | 'pending' | 'approved' | 'rejected'

Filter builds by review status.

integer
OR
string

Only return builds created before this ISO 8601 timestamp.

integer
OR
string

Only return builds created after this ISO 8601 timestamp.

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

Response

app builds listed

Example response

{
  "data": [
    {
      "checksum": "xxxxxxxxxxxxxxx",
      "created_at": "2026-01-01T12:00:00.000Z",
      "file_url": "https://whop-assets-example.s3.amazonaws.com/uploads/image/2026-01-01/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "id": "apbu_xxxxxxxxxxxxxx",
      "platform": "ios",
      "review_message": "The hub view crashes on launch when the member has no active membership. Fix and resubmit.",
      "source_url": "https://whop-assets-example.s3.amazonaws.com/uploads/image/2026-01-01/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "status": "rejected",
      "supported_app_view_types": [
        "hub"
      ]
    }
  ],
  "page_info": {
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes