Skip to main content
Version: 1.3.0

Aggregate health

GET 

/health

Returns aggregate health status combining liveness and readiness checks. Returns 200 when all checks pass; 503 when any check fails. This endpoint is exempt from authentication so probes can reach it without credentials. Root-level aliases at /health and /health.html (outside the /api base path) are also available for GTMs that require probes at well-known root paths.

Responses

Health check result

Schema

    code integerrequired

    Response code, 0 for success

    status stringrequired

    Possible values: [UP, DOWN]

    Aggregate health status

    checks

    object[]

    required

    Per-component check results

  • Array [

  • name stringrequired

    Name of the component being checked

    status stringrequired

    Possible values: [UP, DOWN]

    Status of the component

    details

    object

    Optional diagnostic details about the check result

    property name* string
  • ]

Loading...