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

# Version of Rasa

> Returns the version of Rasa.



## OpenAPI

````yaml /openapi/pro.yaml get /version
openapi: 3.0.1
info:
  title: Rasa - Server Endpoints
  version: 1.0.0
  description: >-
    The Rasa server provides endpoints to retrieve trackers of conversations as
    well as endpoints to modify them. Additionally, endpoints for training and
    testing models are provided.
servers:
  - url: http://localhost:5005
    description: Local development server
security: []
paths:
  /version:
    get:
      tags:
        - Server Information
      summary: Version of Rasa
      description: Returns the version of Rasa.
      operationId: getVersion
      responses:
        '200':
          description: Version of Rasa
          content:
            application/json:
              schema:
                type: object
                properties:
                  version:
                    type: string
                    description: Rasa version number
                  minimum_compatible_version:
                    type: string
                    description: >-
                      Minimum version this Rasa version is able to load models
                      from
              example:
                version: 1.0.0
                minimum_compatible_version: 1.0.0

````