---
title: "List machines"
method: GET
path: "/api/v1/machines"
tags: ["Machines"]
---

# List machines

`GET /api/v1/machines`

List machines.

Auth: Required (bearer token).
Scope: Organization-scoped in authenticated context.
Side effects: Read-only operation.

## Query parameters

- `page` integer
- `page_size` integer
- `search` string
- `sort_by` string
- `sort_order` 'asc' | 'desc'
- `status` string
- `is_active` boolean

## Headers

- `Accept` string

## Response `200`

OK

- ListMachinesResponse — ListMachinesResponse schema
  - `data` object
    - `is_active` boolean, nullable
    - `page` integer
    - `page_size` integer
    - `search` string
    - `servers` object[]
      - `auth_method` string
      - `created_at` string, date-time
      - `deleted_at` string, date-time, nullable
      - `description` string, nullable
      - `fingerprint` string, nullable
      - `host` string, nullable
      - `id` string, uuid
      - `is_active` boolean
      - `is_default` boolean
      - `key_size` integer, nullable
      - `key_type` string, nullable
      - `last_used_at` string, date-time, nullable
      - `name` string
      - `organization_id` string, uuid
      - `port` integer, nullable
      - `provision` object, nullable
        - `created_at` string, date-time
        - `disk_size_gb` integer
        - `domain` string, nullable
        - `error` string, nullable
        - `guest_ip` string, nullable
        - `id` string, uuid
        - `lxd_container_name` string, nullable
        - `memory_mb` integer
        - `organization_id` string, uuid
        - `server_id` string, uuid
        - `ssh_key_id` string, uuid
        - `step` string, nullable
        - `subdomain` string, nullable
        - `type` string
        - `updated_at` string, date-time
        - `user_id` string, uuid
        - `vcpu_count` integer
      - `proxy_host` string, nullable
      - `public_key` string, nullable
      - `total_disk_gb` integer
      - `total_ram_mb` integer
      - `total_vcpu` integer
      - `updated_at` string, date-time
      - `user` string, nullable
    - `sort_by` string
    - `sort_order` 'asc' | 'desc'
    - `status` string
    - `total_count` integer
  - `message` string
  - `status` string

## Other responses

- `400` — Bad Request _(validation or deserialization error)_
- `500` — Internal Server Error _(panics)_
- `default`

---

[API](https://skmtc.net/nixopus/apis/openapi.md) · [All operations](https://skmtc.net/nixopus/apis/openapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nixopus/openapi/versions/c5bacaea7239/schema)
