> ## Documentation Index
> Fetch the complete documentation index at: https://paper.brimble.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List all snapshots

> Returns every snapshot owned by the caller across all sandboxes.



## OpenAPI

````yaml GET /sandboxes/snapshots
openapi: 3.0.3
info:
  title: Brimble Sandbox API
  description: >
    REST API for managing Brimble sandboxes, ephemeral compute environments with

    optional persistent storage. Covers lifecycle (create / pause / resume /
    destroy),

    egress policy, runtime operations (exec, runCode, file upload/download),

    observability (logs, stats), and snapshots.


    ## Conventions


    - **Response envelope:** non-`204` JSON responses use `{ "message": string,
    "data"?: <payload> }`.
      The schemas below describe the **`data`** payload only.
    - **Errors:** every non-2xx response uses `{ "message": string }`. The
    message is
      user-facing.
    - **Async transitions:** pause / resume / destroy return immediately;
      the status change is visible on the next `GET` or in the dashboard.
      **Create is synchronous** — `POST /sandboxes` blocks until `status` is `ready`.
    - **IDs:** every `id` is a 24-char hex string.
  version: 1.0.0
  contact:
    name: Brimble Engineering
    url: https://brimble.io
servers:
  - url: https://sandbox.brimble.io
    description: Production
security:
  - brimbleKey: []
tags:
  - name: Sandboxes
    description: Lifecycle and metadata
  - name: Runtime
    description: Exec, code, files
  - name: Observability
    description: Logs and stats
  - name: Snapshots
    description: Manual & automatic snapshots
  - name: Volumes
    description: >-
      Persistent disks, pre-provisioned independently of sandbox lifecycle, then
      attached to a sandbox or project
paths:
  /sandboxes/snapshots:
    get:
      tags:
        - Snapshots
      summary: List all snapshots for the caller
      description: Returns every snapshot owned by the caller across all sandboxes.
      operationId: listAllSnapshots
      parameters:
        - $ref: '#/components/parameters/PageParam'
        - $ref: '#/components/parameters/LimitParam'
      responses:
        '200':
          description: Paginated snapshots
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedSnapshotsEnvelope'
components:
  parameters:
    PageParam:
      in: query
      name: page
      required: false
      schema:
        type: integer
        minimum: 1
        default: 1
    LimitParam:
      in: query
      name: limit
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 15
  schemas:
    PaginatedSnapshotsEnvelope:
      type: object
      required:
        - message
        - data
      properties:
        message:
          type: string
          example: Snapshots fetched
        data:
          $ref: '#/components/schemas/PaginatedSnapshots'
    PaginatedSnapshots:
      type: object
      required:
        - data
        - totalCount
        - currentPage
        - totalPages
        - limit
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Snapshot'
        totalCount:
          type: integer
        currentPage:
          type: integer
        totalPages:
          type: integer
        limit:
          type: integer
    Snapshot:
      type: object
      required:
        - id
        - sandbox_id
        - name
        - image_tag
        - source_template
        - status
        - created_at
      properties:
        id:
          type: string
        sandbox_id:
          type: string
        name:
          type: string
        image_tag:
          type: string
        source_template:
          type: string
        status:
          type: string
          enum:
            - creating
            - ready
            - failed
        failure_reason:
          type: string
          nullable: true
        size_bytes:
          type: integer
          nullable: true
        created_at:
          type: string
          format: date-time
  securitySchemes:
    brimbleKey:
      type: apiKey
      in: header
      name: x-brimble-key
      description: |
        Your account-level Brimble API key. Find it in the dashboard under
        your profile drawer → **API key** (click the avatar in the sidebar).
        Available on paid plans only.

````