Skip to main content
GET
/
projects
/
{project_name}
/
computers
List Computers
curl --request GET \
  --url https://www.orgo.ai/api/projects/{project_name}/computers \
  --header 'Authorization: Bearer <token>'
{
  "computers": [
    {
      "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"
    }
  ]
}
Get all computers within a project.

Example Response

{
  "computers": [
    {
      "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

project_name
string
required

Response

200 - application/json

List of computers

computers
object[]
I