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

# Detailed health check

> Returns service health with database connectivity, uptime, memory usage, and Node.js version. Public — no authentication required.




## OpenAPI

````yaml /openapi.yaml get /health/detailed
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /health/detailed:
    get:
      summary: Detailed health check
      description: >
        Returns service health with database connectivity, uptime, memory usage,
        and Node.js version. Public — no authentication required.
      responses:
        '200':
          description: Detailed health status
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - healthy
                      - degraded
                  service:
                    type: string
                    example: api
                  uptime_seconds:
                    type: integer
                  node_version:
                    type: string
                    example: v20.18.0
                  database:
                    type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - connected
                          - error
                      latency_ms:
                        type: integer
                        nullable: true
                  memory:
                    type: object
                    properties:
                      rss_mb:
                        type: integer
                      heap_used_mb:
                        type: integer
                      heap_total_mb:
                        type: integer
      security: []

````