Skip to main content
GET
/
deployment-configs
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
  }
}

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

page
integer
default:"0"
Page number (0-indexed)
page_size
integer
default:"25"
Results per page (1-100)

Response

data
DeploymentConfig[]
required
Array of deployment config objects
pagination
object
required
Pagination metadata (page, page_size, total_count, total_pages)

DeploymentConfig Object

id
string
required
Deployment config ID (use as deployment_config_id when starting runs)
name
string
required
Deployment config name
description
string
Optional description
kind
string
required
Platform kind (e.g. windows, macos, linux, android, ios, xbox, playstation)
pinned
boolean
required
Whether the config is pinned
providerType
string
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
  }
}

Authorizations

X-Api-Key
string
header
required

API key for authentication

Query Parameters

page
integer
default:0

Page number (0-indexed)

page_size
integer
default:25

Results per page (1-100)

Required range: 1 <= x <= 100

Response

Successful response

data
object[]
pagination
object