Developers
REST API
Everything the dashboard does, scriptable. Auth via the same session cookies the dashboard uses, or short-lived tokens once the API tokens feature ships.
| Method | Path | Description |
|---|---|---|
| POST | /v1/auth/sign-up | Create account + first workspace |
| POST | /v1/auth/sign-in | Exchange credentials for session cookies |
| GET | /v1/orgs | List your workspaces |
| GET | /v1/orgs/:orgId/projects | List projects in a workspace |
| POST | /v1/orgs/:orgId/projects | Create a project from a Git repo |
| POST | /v1/orgs/:orgId/projects/:projectId/deployments | Trigger a deploy |
| GET | /v1/orgs/:orgId/deployments/:id | Get deployment status + URL |
| GET | /v1/orgs/:orgId/deployments/:id/logs/stream | SSE stream of build/runtime logs |