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

# API root endpoint



## OpenAPI

````yaml /openapi.json get /
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:
  /:
    get:
      tags:
        - Root
      summary: API root endpoint
      operationId: AppController_getRoot
      parameters: []
      responses:
        '200':
          description: API information
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                    example: Uptime Monitor API
                  version:
                    type: string
                    example: 1.0.0
                  status:
                    type: string
                    example: running
                  documentation:
                    type: string
                    example: /api
                  health:
                    type: string
                    example: /health
                  timestamp:
                    type: string
                    example: '2024-01-10T12:00:00Z'

````