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:view-configs
Retrieve a paginated list of deployment configurations for your project. Use
this endpoint to discover valid deployment_config_id values for
Start a Run and
Start Test Plan Run.
Query Parameters
Response
data
DeploymentConfig[]
required
Array of deployment config objects
Pagination metadata (page, page_size, total_count, total_pages)
DeploymentConfig Object
Deployment config ID (use as deployment_config_id when starting runs)
Platform kind (e.g. windows, macos, linux, android, ios,
xbox, playstation)
Whether the config is pinned
Underlying build provider (e.g. build-storage, direct-url), or null if
unknown
curl -X GET "https://nunu.ai/api/v1/deployment-configs?page=0&page_size=25" \
-H "X-Api-Key: YOUR_API_TOKEN"
{
"data": [
{
"id": "456e7890-e89b-12d3-a456-426614174000",
"name": "Android prod",
"description": "Build storage based android deployment",
"kind": "android",
"pinned": true,
"providerType": "build-storage"
}
],
"pagination": {
"page": 0,
"page_size": 25,
"total_count": 1,
"total_pages": 1
}
}
API key for authentication
Required range: 1 <= x <= 100