API Reference
Boottify provides internal REST APIs for managing applications, deployments, and platform resources.
Note: Public API access is coming soon. Currently, all API routes require authentication via session cookie or API token.
Base URL
https://control.boottify.com/api
Authentication
All API requests require authentication. Use either:
- Session Cookie: Automatically set after sign-in
- API Token: Generate from Settings → API Tokens
Webhook Events
Configure webhooks to receive deployment events:
{
"event": "deployment.completed",
"deployment": {
"id": "dep_abc123",
"status": "success",
"url": "https://my-app.boottify.com",
"commit": "abc1234"
}
}
Rate Limiting
API requests are rate-limited per IP and per user. Current limits are 100 requests per minute for authenticated users.