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

# Check system health



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.0.0
info:
  title: Uptime Monitor API
  description: >-
    API documentation for the Uptime Monitor application. This API allows users
    to create and manage website monitors, perform checks, and view statistics.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.justanotheruptime.com
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: projects
    description: Project management endpoints
  - name: monitors
    description: Monitor management endpoints
  - name: checks
    description: Check-related endpoints
  - name: statistics
    description: Monitor statistics endpoints
paths:
  /health:
    get:
      tags:
        - Health
      summary: Check system health
      operationId: HealthController_checkHealth
      parameters: []
      responses:
        '200':
          description: System health status
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  timestamp:
                    type: string
                    example: '2024-01-10T12:00:00Z'
                  services:
                    type: object
                    properties:
                      backend:
                        type: object
                        properties:
                          status:
                            type: string
                            example: healthy
                          version:
                            type: string
                            example: 1.0.0
                          uptime:
                            type: number
                            example: 3600
                      database:
                        type: object
                        properties:
                          status:
                            type: string
                            example: connected
                          type:
                            type: string
                            example: postgresql

````