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

# Get Version

> Return the version of the container application code



## OpenAPI

````yaml /openapi/privateai_4.3.0.json get /
openapi: 3.1.0
info:
  title: API Reference
  description: Private AI API Reference
  termsOfService: https://www.getlimina.ai/en/terms-of-use
  contact:
    url: https://www.getlimina.ai/en/contact-us
    email: info@getlimina.ai
  version: 4.3.0
servers:
  - url: https://api.private-ai.com/community
    description: Private AI Community API
  - url: https://api.private-ai.com/cloud
    description: Private AI Cloud API
  - url: http://localhost:8080
    description: Local Server
security: []
paths:
  /:
    get:
      summary: Get Version
      description: Return the version of the container application code
      operationId: get_version__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VersionResponse'
components:
  schemas:
    VersionResponse:
      properties:
        app_version:
          type: string
          title: App Version
          description: The app version of the code currently deployed at this endpoint.
      type: object
      required:
        - app_version
      title: VersionResponse

````