---
title: "List App Builds"
method: GET
path: "/app_builds"
tags: ["App Builds"]
---

# List App Builds

`GET /app_builds`

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

## Query parameters

- `app_id` string, required
- `platform` 'ios' | 'android' | 'web'
- `status` 'draft' | 'pending' | 'approved' | 'rejected'
- `created_before` union
  - integer
  - string
- `created_after` union
  - integer
  - string
- `first` integer
- `after` string
- `last` integer
- `before` string

## Response `200`

app builds listed

- object
  - `data` AppBuild[], required
    - `checksum` string, required — Client-generated checksum of the build file, used to verify file integrity.
    - `created_at` string, required — When the build was uploaded, as an ISO 8601 timestamp.
    - `file_url` string, nullable, required — URL to download the uploaded build artifact.
    - `id` string, required — App build ID, prefixed `abld_`.
    - `is_production` boolean, required — Whether this build is the currently active production build for its platform.
    - `platform` 'ios' | 'android' | 'web', required — The target platform for this build.
    - `review_message` string, nullable, required — Feedback from the reviewer explaining a rejection, or `null` if the build has not been reviewed or was approved.
    - `source_url` string, nullable, required — URL to download the compressed source code archive that produced this build, or `null` when the build was uploaded without a source archive.
    - `status` 'draft' | 'pending' | 'approved' | 'rejected', required — The build's review status.
    - `supported_app_view_types` string[], required
  - `page_info` object, required
    - `end_cursor` string, nullable, required
    - `has_next_page` boolean, required
    - `has_previous_page` boolean, required
    - `start_cursor` string, nullable, required

## Other responses

- `400` — Invalid Parameters
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Resource not found

## Changes

- **2026-07-26** `60bbb4a6ffbc` — 6 breaking, 8 warning, 24 info
  - the `query` request parameter `platform` was restricted to a list of enum values
  - the `query` request parameter `status` was restricted to a list of enum values
  - for the `query` request parameter `created_after`, the type changed from `string, null` to `integer, string`, and format from `date-time` to no format
  - for the `query` request parameter `created_before`, the type changed from `string, null` to `integer, string`, and format from `date-time` to no format
  - …34 more

[Change history](https://skmtc.dev/whop/apis/whop-api/changes/app_builds/get.md)

---

[API](https://skmtc.dev/whop/apis/whop-api.md) · [All operations](https://skmtc.dev/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/whop/whop-api/revisions/60bbb4a6ffbc/schema)
