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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "project_name": "<string>",
  "os": "linux",
  "ram": 2,
  "cpu": 2,
  "gpu": "none",
  "status": "<string>",
  "url": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}
Retrieve details about a specific computer by its ID.

Example Response

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "dev-machine",
  "project_name": "my-project",
  "os": "linux",
  "ram": 4,
  "cpu": 2,
  "status": "running",
  "url": "https://dev-machine.example.com",
  "created_at": "2024-01-15T10:30:00Z"
}

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

Response

200 - application/json

Computer details

id
string<uuid>
name
string
project_name
string
os
enum<string>
Available options:
linux,
windows
ram
enum<integer>
Available options:
2,
4,
8
cpu
enum<integer>
Available options:
2,
4,
8
gpu
enum<string>
Available options:
none,
t4,
a10
status
string
url
string
created_at
string<date-time>
I