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

# Health Check

> Check if the API gateway is online. No authentication required.

<Note>
  This endpoint is **public** -- no API key or authentication needed. Just hit **Send**.
</Note>


## OpenAPI

````yaml GET /health
openapi: 3.0.3
info:
  title: Union Bank BaaS API, Public Endpoints
  version: '1.0'
  description: Public endpoints that do not require authentication.
servers:
  - url: https://api-partner.onecluster.co
    description: Sandbox
  - url: https://api.onecluster.co
    description: Production
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health Check
      description: Check if the API gateway is online. No authentication required.
      operationId: getHealth
      responses:
        '200':
          description: API is healthy
          content:
            text/plain:
              schema:
                type: string
                example: Healthy

````