Computers
Get VNC password
Get the credentials used to connect to a computer.
GET
Get VNC password
Returns the computer’s VNC credential and its Desktop API token.
Path parameters
string
required
Computer UUID. This endpoint accepts the UUID only. Unlike the lifecycle endpoints, it does not resolve an
instance_id, and passing one returns 500.Response
string
The VNC credential. Use it as the password for a VNC client and as the
token query parameter on the VNC and terminal WebSockets.string
The Bearer token for the computer’s Desktop API:
/bash, /events, and the terminal. Usually the same string as password, but a computer that carries its own stamped token returns that instead, so send this field rather than reusing password.Access control
Workspace owners and workspace members can read these values. Anyone else gets403. A workspace-scoped API key can only read them for computers in its own workspace.
Example
Response
Usage
- VNC connections: pass
passwordas the password in any VNC client. - VNC and terminal WebSockets: pass
passwordas thetokenquery parameter (see the Terminal WebSocket). - Desktop API: send
desktop_api_tokenas the Bearer token onhttps://www.orgo.ai/api/desktops/{instance_id}/proxy/{endpoint}.