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>'
Start a stopped computer.

Behavior

  • Idempotent operation - succeeds if computer is already running
  • Computer becomes accessible within moments

Example

curl -X POST https://www.orgo.ai/api/computers/550e8400-e29b-41d4-a716-446655440000/start \
  -H "Authorization: Bearer sk_live_..."

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

Response

200

Computer started

I