> ## Documentation Index
> Fetch the complete documentation index at: https://api-reference.hyperswitch.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Health

> To check whether the application is up



## OpenAPI

````yaml rust_locker_open_api_spec get /health
openapi: 3.0.2
info:
  title: Tartarus - OpenAPI 3.0
  description: >-
    This is the OpenAPI 3.0 specification for the card locker.

    This is used by the [hyperswitch](https://github.com/juspay/hyperswitch) for
    storing card information securely.
  version: '1.0'
servers: []
security: []
tags:
  - name: Key Custodian
    description: API used to initialize the locker after deployment.
  - name: Data
    description: CRUD APIs for working with data to be stored in the locker
  - name: Cards
    description: >-
      CRUD APIs for working with cards data to be stored in the locker
      (deprecated)
paths:
  /health:
    get:
      summary: Get Health
      description: To check whether the application is up
      responses:
        '200':
          description: Health is good
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Health'
components:
  schemas:
    Health:
      title: Health
      type: string
      description: health is good
      example: health is good

````