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

# Health Check

> Returns the health status of the server.



## OpenAPI

````yaml /api-reference/openapi.json get /
openapi: 3.0.3
info:
  description: >-
    Comprehensive financial APIs designed to streamline your business operations
    and enhance your customer experience.


    This documentation covers the Pay In APIs.
  license:
    name: MIT
  title: FinFlex API Reference
  version: 1.0.0
servers:
  - url: https://48x2gpzu9b.execute-api.ap-south-1.amazonaws.com
security:
  - bearerAuth: []
tags:
  - description: Pay-in operations
    name: Pay In
  - description: Health check endpoints
    name: Health
paths:
  /:
    get:
      tags:
        - Health
      summary: Health Check
      description: Returns the health status of the server.
      responses:
        '200':
          content:
            application/json:
              example:
                status: Health Check :) Server is up and running
              schema:
                properties:
                  status:
                    example: Health Check :) Server is up and running
                    type: string
                type: object
          description: Server is up and running
      security: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````