Skip to main content
POST
/
computers
/
{id}
/
start
Start computer
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/start \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": "starting"
}
Starts a stopped or suspended computer. State is restored from its last running snapshot.

Path parameters

id
string
required
Computer ID.

Response

success
boolean
true if start was initiated.
Idempotent - starting an already-running computer returns success without side effects.

Example

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

Response

{
  "success": true
}

Errors

  • 401 - Invalid or missing API key
  • 403 - You don’t have access to this computer
  • 404 - Computer not found

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Computer ID

Response

Computer starting

success
boolean
Example:

true

status
string
Example:

"starting"