---
title: "Query the status of an asynchronous disk snapshot."
method: GET
path: "/v1/devboxes/disk_snapshots/{id}/status"
tags: ["Devbox", "Devbox-PersistenceTools"]
---

# Query the status of an asynchronous disk snapshot.

`GET /v1/devboxes/disk_snapshots/{id}/status`

Get the current status of an asynchronous disk snapshot operation, including whether it is still in progress and any error messages if it failed.

## Path parameters

- `id` string, required

## Response `200`

Snapshot status retrieved successfully.

- DevboxSnapshotAsyncStatusView
  - `status` 'in_progress' | 'error' | 'complete' | 'deleted', required
  - `snapshot` DevboxDiskSnapshotView
    - `id` string, required — The unique identifier of the snapshot.
    - `name` string, nullable — (Optional) The custom name of the snapshot.
    - `create_time_ms` integer, required — Creation time of the Snapshot (Unix timestamp milliseconds).
    - `metadata` object, required — User defined metadata associated with the snapshot.
    - `source_devbox_id` string, required — The source Devbox ID this snapshot was created from.
    - `source_blueprint_id` string, nullable — (Optional) The source Blueprint ID this snapshot was created from.
    - `commit_message` string, nullable — (Optional) The commit message of the snapshot (max 1000 characters).
    - `size_bytes` integer, nullable — (Optional) The size of the snapshot in bytes, relative to the base blueprint.
  - `error_message` string, nullable — Error message if the operation failed.

## Other responses

- `404` — Snapshot not found.

---

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