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

# Get the latest version.

> Returns the latest version information stored in Redis.



## OpenAPI

````yaml /api-reference/openapi.json get /api/version/latest
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/version/latest:
    get:
      tags:
        - Root
      summary: Get the latest version.
      description: Returns the latest version information stored in Redis.
      operationId: RootController_getLatestVersion
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetVersionDto'
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
components:
  schemas:
    GetVersionDto:
      type: object
      properties:
        currentVersion:
          type: string
          description: Current system version
          nullable: true
        latestVersion:
          type: string
          description: Latest system version
          nullable: true
        releaseDate:
          type: string
          description: Release date
          nullable: true
        notes:
          type: string
          description: Release notes
          nullable: true
        isLatest:
          type: boolean
          description: Is latest version
          nullable: true
      required:
        - currentVersion
        - latestVersion
        - releaseDate
        - notes
        - isLatest

````