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

# Delete sandbox image



## OpenAPI

````yaml openapi.json DELETE /api/images/{key}
openapi: 3.0.1
info:
  title: Hyperbrowser API
  version: 1.0.0
servers:
  - url: https://api.hyperbrowser.ai
    description: Production server
security: []
paths:
  /api/images/{key}:
    delete:
      tags:
        - Images
      summary: Delete sandbox image
      parameters:
        - name: key
          in: path
          required: true
          description: >-
            Team image name or ID. Names resolve to the newest launch-target
            revision (release_channel unset), including not-yet-uploaded rows.
            Public images cannot be deleted. In-flight builds, snapshots, and
            sandbox mappings that still reference the image return 409.
          schema:
            type: string
      responses:
        '200':
          description: Image deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SandboxImageDeleteResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    SandboxImageDeleteResponse:
      type: object
      properties:
        deleted:
          type: boolean
        id:
          type: string
          description: Deleted image revision ID.
        imageName:
          type: string
          description: Deleted image name.
        uploaded:
          type: boolean
          description: >-
            Whether the deleted revision was uploaded. Delete-by-name can target
            a not-yet-uploaded revision that list endpoints hide.
      required:
        - deleted
        - id
        - imageName
        - uploaded
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````