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
queued— Waiting for a build slotbuilding— Currently buildingdeploying— Deploying to runtimelive— Running and serving trafficfailed— Build or deploy failedcancelled— Cancelled by user