Skip to main content
GET
/
computers
/
{id}
Get computer
curl --request GET \
  --url https://www.orgo.ai/api/computers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
  "name": "agent-1",
  "project_name": "production",
  "os": "linux",
  "ram": 4,
  "cpu": 1,
  "disk_size_gb": 8,
  "status": "running",
  "url": "https://orgo.ai/workspaces/a3bb189e-8bf9-3888-9912-ace4e6543002",
  "created_at": "2023-11-07T05:31:56Z"
}
Returns computer details including current status.

Path parameters

id
string
required
Computer ID (UUID).

Response

id
string
Computer identifier (UUID).
name
string
Computer name.
project_name
string
Name of the parent workspace.
os
string
Operating system.
ram
integer
RAM in GB.
cpu
integer
CPU cores.
status
string
One of creating, starting, running, stopping, stopped, restarting, suspended, deleting, error.
url
string
Dashboard URL.
created_at
string
ISO 8601 timestamp.

Example

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

Response

{
  "id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
  "name": "agent-1",
  "project_name": "production",
  "os": "linux",
  "ram": 4,
  "cpu": 1,
  "status": "running",
  "url": "https://orgo.ai/workspaces/a3bb189e-8bf9-3888-9912-ace4e6543002",
  "created_at": "2026-04-07T10:35:00Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Computer ID

Response

Computer details

id
string

Unique computer identifier

Example:

"a3bb189e-8bf9-3888-9912-ace4e6543002"

name
string

Computer name

Example:

"agent-1"

project_name
string

Name of the parent workspace

Example:

"production"

os
enum<string>

Operating system

Available options:
linux
Example:

"linux"

ram
enum<integer>

RAM in GB

Available options:
4,
8,
16,
32,
64
Example:

4

cpu
enum<integer>

CPU cores

Available options:
1,
2,
4,
8,
16
Example:

1

disk_size_gb
integer

Disk size in GB

Example:

8

status
enum<string>

Current status

Available options:
creating,
starting,
running,
stopping,
stopped,
restarting,
suspended,
deleting,
error
Example:

"running"

url
string

Dashboard URL for the computer

Example:

"https://orgo.ai/workspaces/a3bb189e-8bf9-3888-9912-ace4e6543002"

created_at
string<date-time>