Welcome to LaunchverseQuickstartDashboard Overview
Deployment GuideEnvironment Variables & SecretsCustom DomainsTeam ManagementPreview EnvironmentsRollback & PromoteWeb ShellHow Builds Work (Forge)
AuthenticationProjectsDeploymentsDomainsDatabasesError Codes & Conventions
JavaScript SDKPython SDK
Changelog
API Reference (Redoc)

Deployments API

Build and deploy history, with preview state.

List Deployments

GET /api/v1/projects/:id/deployments

Returns deployment history for a project. Paginated and filterable by status.

Get a Deployment

GET /api/v1/projects/:id/deployments/:deployment_id

Returns a single deployment with full details including build logs and status.

Trigger a Deployment

POST /api/v1/projects/:id/deployments

Triggers a new deployment. Optionally specify a commit SHA or branch.

Deployment States

    1. queued — Waiting for a build slot
    2. building — Currently building
    3. deploying — Deploying to runtime
    4. live — Running and serving traffic
    5. failed — Build or deploy failed
    6. cancelled — Cancelled by user
Edit this page on GitHub↗