Overall status
Get the status of all desktop processes.
GET
/api/statusGet the status of all desktop processes.
Authorization
BearerAuth AuthorizationBearer <token>
API key passed as a Bearer token.
In: header
Response Body
application/json
curl -X GET "https://<sandbox_id>.sandbox.leap0.dev/api/status"{ "status": "running", "items": [ { "name": "x11vnc", "running": true, "pid": 0, "stdout_log": "string", "stderr_log": "string" } ], "running": 0, "total": 0}Download recording GET
Download a recording as an MP4 file.
Status stream (SSE) GET
Subscribe to a live Server-Sent Events stream of process status. Events are sent immediately on connect, on status changes, and every 2 seconds as a heartbeat. Each SSE message is a framed `data:` line containing a JSON-encoded `ProcessStatusResponse`. Error events use `event: error` with a plain-text `data:` payload.

