Skip to main content
GET
/
computers
/
{id}
/
vnc-password
Get VNC password
curl --request GET \
  --url https://www.orgo.ai/api/computers/{id}/vnc-password \
  --header 'Authorization: Bearer <token>'
{
  "password": "abc123xyz"
}
Returns the VNC password for direct VNC connection to the computer.
This password provides direct access to the computer’s display. Keep it secure and do not share it publicly.

Path parameters

id
string
required
Computer ID.

Response

password
string
VNC connection password.

Access control

This endpoint is only accessible to:
  • Workspace owners
  • Workspace members
Unauthorized users will receive a 403 Forbidden response.

Example

curl https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002/vnc-password \
  -H "Authorization: Bearer $ORGO_API_KEY"

Response

{
  "password": "abc123xyz"
}

Usage

Use this password to connect to the computer via any VNC client:
  1. Get the computer’s VNC URL from the dashboard
  2. Use this password when prompted by your VNC client
  3. You now have direct access to the computer’s display
For programmatic control, use the Computer Actions endpoints instead of VNC.

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Path Parameters

id
string
required

Computer ID

Response

VNC password

password
string

VNC connection password