Skip to main content

Public API Coming Soon

A public REST API is planned for a future release. Currently, the Control Center uses internal API routes that are session-authenticated.

// API REFERENCE

API REFERENCE.

The Boottify Control Center is powered by internal REST API routes. Webhooks are available for deployment event notifications.

Base URL (Internal)https://control.boottify.com/api

These routes require an authenticated session cookie. They are used by the Control Center dashboard and are not intended for external consumption yet.

02

WEBHOOK PAYLOAD EXAMPLE

When a deployment completes, Boottify sends a POST request to your configured webhook URL with details about the deployment.

json
{
  "event": "deployment.completed",
  "app": {
    "id": "app-abc123",
    "name": "my-app",
    "subdomain": "my-app.boottify.com"
  },
  "deployment": {
    "status": "success",
    "branch": "main",
    "commit": "a1b2c3d",
    "timestamp": "2026-02-21T12:00:00Z"
  }
}