v8
OpenAPI 3.1.02026-08-033623795.0 MBApp 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.
Only return builds created before this ISO 8601 timestamp.
Only return builds created after this ISO 8601 timestamp.
firstinteger
The number of builds to return (default 20, max 100).
afterstring
A cursor; returns builds after this position.
lastinteger
The number of builds to return from the end of the range.
beforestring
A cursor; returns builds before this position.
Response
app builds listed
Example response
{
"data": [
{
"platform": "ios",
"status": "draft",
"supported_app_view_types": [
"hub"
]
}
]
}