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",
  "workspace_id": "550e8400-e29b-41d4-a716-446655440000",
  "os": "linux",
  "ram": 4,
  "cpu": 2,
  "gpu": "none",
  "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.

Response

id
string
Computer identifier.
name
string
Computer name.
workspace_id
string
Parent workspace ID.
os
string
Operating system.
ram
integer
RAM in GB.
cpu
integer
CPU cores.
gpu
string
GPU type.
status
string
Current status: starting, running, stopping, stopped, or 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",
  "workspace_id": "550e8400-e29b-41d4-a716-446655440000",
  "os": "linux",
  "ram": 4,
  "cpu": 2,
  "gpu": "none",
  "status": "running",
  "url": "https://orgo.ai/workspaces/a3bb189e-8bf9-3888-9912-ace4e6543002",
  "created_at": "2024-01-15T10: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"

workspace_id
string

Parent workspace ID

Example:

"550e8400-e29b-41d4-a716-446655440000"

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:
2,
4,
8,
16
Example:

2

gpu
enum<string>

GPU type

Available options:
none,
a10,
l40s,
a100-40gb,
a100-80gb
Example:

"none"

status
enum<string>

Current status

Available options:
starting,
running,
stopping,
stopped,
error
Example:

"running"

url
string

URL to view the computer

Example:

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

created_at
string<date-time>

Creation timestamp