Skip to main content
POST
/
computers
/
{id}
/
stop
Stop computer
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/stop \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": "stopping"
}
Stops a running computer.
Stopped computers don’t incur compute charges. State is preserved and the computer can be restarted later.

Path parameters

id
string
required
Computer ID.

Response

success
boolean
true if stop was initiated.
status
string
New status: stopping.

Behavior

  • Graceful shutdown preserves state
  • Idempotent - succeeds if computer is already stopped

Example

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

Response

{
  "success": true,
  "status": "stopping"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Computer ID

Response

Computer stopping

success
boolean
Example:

true

status
string
Example:

"stopping"