For the complete documentation index, see llms.txt. This page is also available as Markdown.

App Builds

List All Builds for a given App

get

List all builds for a given app, with associated metadata. The default paging limit is 100 items per page.

Authorizations
Path parameters
platformstringRequired

The platform of the app. Either ios or android

Example: ios
appIdstringRequired

The unique identifier for the app. On Android this is the package name, on iOS this is the bundle identifier.

Example: com.sample.appId
Query parameters
versionNamestringOptional

The version name to filter by, example "1.0.0".

Example: 1.0.0
buildNumberstringOptional

The build number to filter by, example "1". This is the versionCode on Android and CFBundleVersion on iOS.

Example: 1
tagsstringOptional

The tags to filter by, example "tag1,tag2".

Example: tag1,tag2
latestbooleanOptional

Only return the latest version if more than one version matches the filter.

Example: true
pagenumberOptional

The index of the desired page

Example: 1
limitnumberOptional

The number of items to return per page

Example: 10
Responses
200

OK

application/json
totalinteger · int32OptionalExample: 25
nextPagenumber · int32 · nullableOptionalExample: 2
get/v2/apps/{platform}/{appId}/builds

Last updated