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.
Free-tier computers auto-stop after 15 minutes of inactivity. Paid plans can configure auto-stop or disable it entirely. Use this endpoint to restart a computer that has been auto-stopped or manually stopped.

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 or suspended

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"