Documentation Index
Fetch the complete documentation index at: https://api-docs.nunu.ai/llms.txt
Use this file to discover all available pages before exploring further.
Permission Required: project:manage-build-storage
Retrieve a paginated list of builds for your project.
Query Parameters
Filter by build status (e.g., OK, UNHEALTHY)
Filter by pinned status: true for pinned builds only, false for non-pinned only
Filter by nunu SDK integration: true for SDK builds only, false for non-SDK only
Filter by platform: windows, android, ios-native
Filter by tags (comma-separated). All specified tags must match. Example: tags=release,candidate
Response
Pagination informationShow pagination properties
Build Object
Unique identifier for the build (UUID)
Build status: uploading, ready, failed
Whether the build is pinned (protected from auto-deletion)
Whether the build includes nunu SDK integration
Tags associated with this build
ISO 8601 timestamp when the build was created
ISO 8601 timestamp when the build was last used in a run
curl -X GET "https://nunu.ai/api/v1/builds?status=ready&platform=android&page=0&page_size=10" \
-H "X-Api-Key: YOUR_API_TOKEN"
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Production Build v1.2.3",
"platform": "android",
"status": "OK",
"file_name": "app-release.apk",
"file_size": 52428800,
"pinned": true,
"nunu_sdk": true,
"tags": ["version:1.2.3", "env:production"],
"created_at": "2026-03-03T15:50:19.544603+00:00",
"last_used": "2026-03-10T10:30:00.000000+00:00",
"description": "Release build for production"
}
],
"pagination": {
"page": 0,
"page_size": 10,
"total_count": 25,
"total_pages": 3
}
}
API key for authentication
Filter by build status (e.g., OK, UNHEALTHY)
Filter by nunu SDK integration
Available options:
windows,
macos,
linux,
android,
ios-native,
ios-simulator,
xbox,
playstation
Filter by tags (comma-separated). All specified tags must match.
Required range: 1 <= x <= 100