Skip to main content
POST
/
computers
/
{id}
/
clone
Clone computer
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/clone \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "agent-1 (clone)",
  "status": "running"
}
Creates a copy of an existing computer with the same disk state, name suffixed with (clone). Useful for branching off from a configured base.
Cloning preserves the full disk state — installed software, files, browser sessions, everything. The clone gets a new ID and a fresh network identity.

Path parameters

id
string
required
Source computer ID.

Response

id
string
New computer ID.
name
string
Clone name (e.g., agent-1 (clone) or agent-1 (clone 2)).
status
string
Clone status — typically running immediately after creation.

Plan limits

Cloning counts toward your plan’s computer limit. If you’re at your limit, the request returns 403. Upgrade your plan or delete a computer first.

Example

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

Response

{
  "id": "b4cc290f-9bf9-3888-9912-ace4e6543003",
  "name": "agent-1 (clone)",
  "status": "running"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Source computer ID

Response

Clone created

id
string
name
string
Example:

"agent-1 (clone)"

status
string
Example:

"running"