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

# Get Version

> Retrieve the version of the software running.



## OpenAPI

````yaml /openapi/generated-api-methods.json GET /v1/version
openapi: 3.1.0
info:
  title: Generated API methods
  version: 1.0.0
  description: Generated from imported ApiMethodV2 blocks.
servers:
  - url: https://{sql_node}
    variables:
      sql_node:
        default: sql_node
  - url: http://oc1-lts0:9090
security: []
paths:
  /v1/version:
    get:
      tags:
        - System Information REST Endpoints
      summary: Get Version
      description: Retrieve the version of the software running.
      operationId: getSystemInformationRestEndpointsGetVersion
      parameters: []
      responses:
        '200':
          description: Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  version:
                    type: string
                  timestamp:
                    type: string
                  git_commit:
                    type: string
                  build_user:
                    type: string
                  build_type:
                    type: string
                  build_flags:
                    type: string
              examples:
                response:
                  value:
                    version: 24.0.0
                    timestamp: '20231110.212417'
                    git_commit: 178ba7a7549bd40c137035c5cd4f10c55fd31b00
                    build_user: ''
                    build_type: DEBUG
                    build_flags: fb,lld_flags,mcmodel_medium,tls_model_initial_exec
      servers:
        - url: http://oc1-lts0:9090
      x-codeSamples:
        - lang: curl
          label: curl
          source: |-
            curl --location --request GET 'http://oc1-lts0:9090/v1/version' \
            --header 'Accept: application/json'

````