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

# List Asset Versions

> List an asset's version history, newest first. Every file update mints an immutable version; 'current' marks the one the asset's URL serves and latestVersion is the mint high-water mark (they differ after a rollback). Use before Restore Asset Version or Delete Asset Version to pick a version number.



## OpenAPI

````yaml get /api/v2/asset/versions/list
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/asset/versions/list:
    get:
      tags:
        - Asset
      summary: List Asset Versions
      description: >-
        List an asset's version history, newest first. Every file update mints
        an immutable version; 'current' marks the one the asset's URL serves and
        latestVersion is the mint high-water mark (they differ after a
        rollback). Use before Restore Asset Version or Delete Asset Version to
        pick a version number.
      operationId: listVersions
      parameters:
        - schema:
            type: string
            description: >-
              Asset UUID, from assets_list. e.g.
              '4f1e2a90-8b3d-4c21-9e07-2a1b3c4d5e6f'
          required: true
          description: >-
            Asset UUID, from assets_list. e.g.
            '4f1e2a90-8b3d-4c21-9e07-2a1b3c4d5e6f'
          name: uuid
          in: query
      responses:
        '200':
          description: Asset versions listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        version:
                          type: number
                          description: >-
                            Version number — never reused, even after deletion.
                            e.g. 3
                        current:
                          type: boolean
                          description: >-
                            True when this is the version the asset's URL
                            serves. e.g. true
                        note:
                          type: string
                          nullable: true
                          description: >-
                            Optional note recorded when the version was minted;
                            null when none. e.g. 'Fixed pricing table'
                        fileCount:
                          type: number
                          description: Number of files in the snapshot. e.g. 12
                        totalSize:
                          type: number
                          description: Total size of the snapshot in bytes. e.g. 348160
                        createdAt:
                          type: string
                          description: >-
                            ISO-8601 time the version was minted. e.g.
                            '2026-07-09T10:00:00.000Z'
                      required:
                        - version
                        - current
                        - note
                        - fileCount
                        - totalSize
                        - createdAt
                  currentVersion:
                    type: number
                  latestVersion:
                    type: number
                  total:
                    type: number
                required:
                  - _metadata
                  - data
                  - currentVersion
                  - latestVersion
                  - total
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                required:
                  - _metadata
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          example: 0
          description: API usage
        requestId:
          type: string
          example: requestId
          description: Request ID
        message:
          type: string
          example: message
          description: Message
        timestamp:
          type: string
          example: '2021-01-01T00:00:00.000Z'
          description: Timestamp
      required:
        - requestId
        - timestamp
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````