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>'
Stop a running computer to save costs when not in use.

Behavior

  • Computer is gracefully shut down
  • Idempotent operation - succeeds if already stopped
  • Stopped computers do not incur compute charges

Example

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

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

Response

200

Computer stopped

I