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 computer.
Computers auto-stop after periods of inactivity to save resources. Use this endpoint to restart them.

Path parameters

id
string
required
Computer ID.

Response

success
boolean
true if start was initiated.
status
string
New status: starting.

Behavior

  • Idempotent - succeeds if computer is already running
  • Computer becomes accessible within moments
  • State is preserved from when it was stopped

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,
  "status": "starting"
}

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"