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

# System Status

> Detailed system status for all API products. No authentication required.

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

### Status Values

| Value       | Meaning                                                             |
| ----------- | ------------------------------------------------------------------- |
| `healthy`   | Service is online and responding normally                           |
| `degraded`  | Service is responding but with elevated latency or partial failures |
| `unhealthy` | Service is not responding -- operations may fail                    |


## OpenAPI

````yaml GET /status
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:
  /status:
    get:
      tags:
        - Health
      summary: System Status
      description: >
        Returns the status of each API product and whether any circuit breakers
        are open.

        No authentication required.
      operationId: getStatus
      responses:
        '200':
          description: Detailed status of all services
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: healthy
                  gatewayVersion:
                    type: string
                    example: 1.0.0
                  services:
                    type: object
                    properties:
                      accountsApi:
                        type: string
                      paymentsApi:
                        type: string
                      collectionsApi:
                        type: string
                      kycApi:
                        type: string
                      bankingApi:
                        type: string
                      webhookDispatcher:
                        type: string
                      authentication:
                        type: string
                      developerPortal:
                        type: string

````