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

# List sandboxes

`GET /api/v1/sandboxes`

List active Daytona sandboxes with id, state, created_at, and volume info.

## Query parameters

- `page` integer — Page number for pagination (starting from 1).
- `limit` integer — Maximum number of sandboxes per page.

## Response `200`

Successful Response

- SandboxListResponse — Response for the sandbox list endpoint.
  - `items` SandboxListItem[] — Available sandboxes.
    - `id` string, required — Sandbox identifier.
    - `name` string, required — Sandbox name.
    - `state` string, required — Sandbox state (e.g. started, stopped, archived).
    - `created_at` string, nullable — ISO-8601 creation timestamp when available.
    - `volume_name` string, nullable — Name of the persistent volume attached to the sandbox.
    - `labels` object — Custom labels attached to the sandbox.
    - `cpu` integer, nullable — Allocated CPU cores.
    - `memory` integer, nullable — Allocated memory in GiB.
    - `disk` integer, nullable — Allocated disk in GiB.
  - `total` integer, required — Total number of sandboxes.
  - `page` integer — Current page number.
  - `total_pages` integer — Total number of pages.

## Other responses

- `401` — Authentication is required or the provided token is invalid.
- `422` — Validation Error
- `503` — Sandbox services are unavailable because server startup is incomplete.

---

[API](https://skmtc.net/qredence/apis/fleet-rlm.md) · [All operations](https://skmtc.net/qredence/apis/fleet-rlm/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qredence/fleet-rlm/revisions/62e8c152aa18/schema)
