---
title: "Get sandbox details"
method: GET
path: "/api/v1/sandboxes/{sandbox_id}"
tags: ["sandboxes"]
---

# Get sandbox details

`GET /api/v1/sandboxes/{sandbox_id}`

Return full sandbox details including state, config, and volume.

## Path parameters

- `sandbox_id` string, required — Unique sandbox identifier.

## Response `200`

Successful Response

- SandboxDetailResponse — Detailed response for a single sandbox.
  - `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.
  - `env_vars` object — Redacted environment variables configured for the sandbox.
  - `image` string, nullable — Base image or declarative image used by the sandbox.
  - `snapshot` string, nullable — Snapshot name used to create the sandbox.
  - `language` string, nullable — Programming language of the sandbox.
  - `auto_stop_interval` integer, nullable — Minutes of inactivity before auto-stopping.
  - `auto_archive_interval` integer, nullable — Minutes after stop before archiving to cold storage.
  - `auto_delete_interval` integer, nullable — Minutes after archive before permanent deletion.
  - `ephemeral` boolean, nullable — Whether the sandbox is ephemeral.
  - `network_block_all` boolean, nullable — Whether all outbound network is blocked.
  - `network_allow_list` string, nullable — Comma-separated list of allowed domains.
  - `volumes` object[] — Detailed volume mounts.

## Other responses

- `401` — Authentication is required or the provided token is invalid.
- `404` — Sandbox not found or inaccessible.
- `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)
