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

# Get health



## OpenAPI

````yaml api-reference/features/operate.json GET /health
openapi: 3.0.3
info:
  title: Operate API methods
  version: 1.0.0
  description: Task-focused operate methods across supported Polymorfa connection types.
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Get health
      operationId: nativeGetHealth
      responses:
        '200':
          description: >-
            Required readiness checks pass; optional diagnostics may report
            degraded or in-progress state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__HealthResponse'
        '503':
          description: One or more services unhealthy or draining
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__HealthResponse'
      security: []
      servers:
        - url: https://api.polymorfa.com
components:
  schemas:
    native__HealthResponse:
      type: object
      properties:
        status:
          type: string
          example: healthy
          description: Current status of this resource or operation.
        checks:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/native__HealthCheck'
          description: Structured checks values for this native health response.
      required:
        - status
        - checks
    native__HealthCheck:
      type: object
      properties:
        status:
          type: string
          example: healthy
          description: Current status of this resource or operation.
        error:
          type: string
          description: Error details returned when the operation fails.
      required:
        - status

````