> ## 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.

# Health endpoint of Rasa Server

> This URL can be used as an endpoint to run health checks against. When the server is running this will return 200.



## OpenAPI

````yaml /openapi/pro.yaml get /
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:
  /:
    get:
      tags:
        - Server Information
      summary: Health endpoint of Rasa Server
      description: >-
        This URL can be used as an endpoint to run health checks against. When
        the server is running this will return 200.
      operationId: getHealth
      responses:
        '200':
          description: Up and running
          content:
            text/plain:
              schema:
                type: string
                description: Welcome text of Rasa Server
              example: 'Hello from Rasa: 1.0.0'

````