> ## Documentation Index
> Fetch the complete documentation index at: https://www.thundercompute.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List sandbox images

> Get all sandbox images for the authenticated user's organization



## OpenAPI

````yaml https://api.thundercompute.com:8443/openapi.json get /sandbox-images
openapi: 3.1.0
info:
  contact:
    email: support@thundercompute.com
    name: Thunder Compute API Support
    url: https://thundercompute.com/support
  description: >-
    Retrieve current GPU availability using mode-less spec keys

    Recommended for new integrations. The /status and /v1/status endpoints
    retain their legacy configuration keys for compatibility.
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  termsOfService: http://swagger.io/terms/
  title: Thunder Compute API
  version: '1.0'
servers:
  - description: Production server
    url: https://api.thundercompute.com:8443/v1
  - description: Production server
    url: https://api.thundercompute.com:8443
security: []
externalDocs:
  description: ''
  url: ''
paths:
  /sandbox-images:
    get:
      tags:
        - Sandbox Images
      summary: List sandbox images
      description: Get all sandbox images for the authenticated user's organization
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/thundertypes.SandboxImageResponse'
                type: array
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/thundertypes.ErrorResponse'
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/thundertypes.ErrorResponse'
          description: Internal Server Error
      security:
        - ApiKeyAuth: []
components:
  schemas:
    thundertypes.SandboxImageResponse:
      properties:
        attempt:
          type: integer
        created_at:
          type: string
        display_name:
          type: string
        failure:
          type: string
        failure_code:
          type: string
        id:
          type: string
        managed_digest:
          type: string
        managed_reference:
          type: string
        size_bytes:
          type: integer
        source_type:
          type: string
        state:
          $ref: '#/components/schemas/thundertypes.SandboxImageState'
        updated_at:
          type: string
        upload:
          $ref: '#/components/schemas/thundertypes.SandboxImageUpload'
      type: object
    thundertypes.ErrorResponse:
      properties:
        code:
          example: 400
          type: integer
        error:
          example: invalid_request
          type: string
        message:
          example: The request is malformed
          type: string
      type: object
    thundertypes.SandboxImageState:
      enum:
        - BUILDING
        - READY
        - FAILED
      type: string
      x-enum-varnames:
        - SandboxImageStateBuilding
        - SandboxImageStateReady
        - SandboxImageStateFailed
    thundertypes.SandboxImageUpload:
      properties:
        expires_at:
          type: string
        host:
          type: string
        host_public_key:
          type: string
        path:
          type: string
        port:
          type: integer
        username:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Bearer token authentication. Provide your API token prefixed with
        "Bearer ", e.g. "Bearer your-api-token".
      in: header
      name: Authorization
      type: apiKey

````