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

# List Machines

`GET /v1/machines`

List all machines for the authenticated organization.

Supports pagination and filtering by status, name, or substring search.

Use the `include` parameter to fetch related resources in the response.
Related resources are returned in the `included` array following the JSON:API pattern.

## Query parameters

- `search` string, nullable — Search machines by id, name, or hostname (case-insensitive substring match)
- `name` string, nullable — Exact-match filter on the machine's name (case-sensitive). Use this to look up machines by the value passed to `cyberdriver --name`, e.g. when correlating VMs you spawned from the same image. Names are not unique; the response is a list.
- `status` 'connected' | 'disconnected' | 'error'
- `created_at_from` string, date-time, nullable — Filter machines created at or after this ISO timestamp (UTC)
- `created_at_to` string, date-time, nullable — Filter machines created at or before this ISO timestamp (UTC)
- `include` string, nullable — Comma-separated list of related resources to include. Allowed values: pools. Example: include=pools
- `skip` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseWithIncludesMachineResponse
  - `items` MachineResponse[], required
    - `name` string, nullable
    - `version` string, nullable
    - `hostname` string, nullable
    - `os_info` string, nullable
    - `machine_parameters` object, nullable — Machine-specific input values that auto-populate runs
    - `machine_sensitive_parameters` object, nullable — Machine-specific sensitive input aliases (stored in Basis Theory)
    - `id` string, uuid, required
    - `user_id` string, uuid, nullable
    - `organization_id` string, nullable
    - `unkey_key_id` string, required
    - `status` 'connected' | 'disconnected' | 'error', required
    - `is_available` boolean, required
    - `alerts_enabled` boolean, required
    - `reserved_session_id` string, uuid, nullable
    - `linked_keepalive_machine_id` string, uuid, nullable
    - `physical_server_id` string, nullable — Fly machine ID hosting the WebSocket connection
    - `created_at` string, date-time, required
    - `last_seen` string, date-time, required
    - `pools` PoolResponse[], nullable
      - `name` string, required
      - `description` string, nullable
      - `pool_parameters` object, nullable — Pool-level input values that auto-populate runs selecting this pool
      - `pool_sensitive_parameters` object, nullable — Pool-level sensitive input aliases (stored in Basis Theory)
      - `id` string, uuid, required
      - `organization_id` string, required
      - `created_at` string, date-time, required
      - `updated_at` string, date-time, required
      - `machine_count` integer, nullable — Number of machines in this pool
  - `total` integer, required
  - `skip` integer, required
  - `limit` integer, required
  - `included` IncludedResource[], nullable — Related resources requested via the `include` query parameter
    - `type` string, required — Resource type (e.g., 'workflow', 'machine', 'pool')
    - `id` string, uuid, required — Resource UUID

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/cyberdesk-hq/apis/cyberdesk-cloud.md) · [All operations](https://skmtc.net/cyberdesk-hq/apis/cyberdesk-cloud/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cyberdesk-hq/cyberdesk-cloud/versions/830d2f48963d/schema)
