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

# List snapshots

`GET /api/v1/snapshots`

List snapshots for the authenticated account. Filter by VM, volume, or type.

Pass `X-Project-ID` to scope the list to a single project. When omitted, returns snapshots across every project the API key has access to.

## Query parameters

- `vm_id` string, uuid
- `volume_id` integer
- `type` 'vm' | 'volume'
- `limit` integer
- `offset` integer

## Headers

- `X-Project-ID` string, uuid

## Response `200`

List of snapshots

- object
  - `success` boolean
  - `data` Snapshot[]
    - `id` integer, required — Snapshot ID
    - `account_id` string, uuid — Account that owns the snapshot
    - `project_id` string, uuid — Project the snapshot belongs to
    - `created_by` string — User ID that created the snapshot
    - `type` 'vm' | 'volume', required — Snapshot source type
    - `name` string, required — Snapshot display name
    - `size` string — Current snapshot size
    - `target_size` string — Provisioned size of the source disk at snapshot time
    - `status` '' | 'active' — Indicates whether the source VM or volume is currently running on this snapshot: - `active` — this snapshot is **in use**. The source VM/volume has been reverted to it and is running on it now. Deleting an active snapshot is blocked. - `""` (empty) — this snapshot is saved but **not in use**. The source has not been reverted to it (or has been reverted to a different snapshot since). Only one snapshot per source can be `active` at a time. Calling [Restore Snapshot](#tag/Snapshots/operation/restoreSnapshot) flips that snapshot to `active` and clears the previous active one.
    - `product_vm` string, uuid — Source VM UUID (when `type` is `vm`)
    - `price_per_hour` string — Hourly storage cost in USD
    - `created_at` string, date-time
  - `total` integer

## Other responses

- `401` — Authentication required

---

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