---
title: "List All Machines"
method: GET
path: "/orgs/{org_slug}/machines"
tags: ["Organizations"]
---

# List All Machines

`GET /orgs/{org_slug}/machines`

List all Machines associated with a specific organization. Machines are sorted by their `updated_at` timestamps, oldest to newest.

This API call represents "a point in time". Recent machine changes, including creations and destructions, may take time to propagate. When polling with `updated_after`, offset your timestamps to catch late-arriving events.

## Path parameters

- `org_slug` string, required

## Query parameters

- `include_deleted` boolean
- `region` string
- `state` string
- `summary` boolean
- `updated_after` string
- `cursor` string
- `limit` integer

## Response `200`

OK

- OrgMachinesResponse
  - `error_regions` string[]
  - `last_machine_id` string
  - `last_updated_at` string
  - `machines` OrgMachine[]
    - `app_name` string
    - `config` MachineOverviewConfig
      - `guest` FlyMachineGuest
        - `cpu_kind` string
        - `cpus` integer
        - `gpu_kind` string
        - `gpus` integer
        - `host_dedication_id` string
        - `kernel_args` string[]
        - `max_memory_mb` integer
        - `memory_mb` integer
        - `persist_rootfs` 'never' | 'always' | 'restart' — Deprecated: use MachineConfig.Rootfs instead
      - `image` string
      - `metadata` object
    - `created_at` string
    - `id` string
    - `name` string
    - `private_ip` string
    - `region` string
    - `state` string
    - `updated_at` string
    - `version` string
  - `next_cursor` string

---

[API](https://skmtc.dev/fly/apis/machines-api.md) · [All operations](https://skmtc.dev/fly/apis/machines-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fly/machines-api/revisions/f5ad396d55d7/schema)
