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

# Health Check



## OpenAPI

````yaml /api-reference/openapi.json get /
openapi: 3.1.0
info:
  title: Monita API
  description: API documentation for Monita
  version: 0.1.0
servers:
  - url: https://crawl.getmonita.io
    description: production server
security: []
paths:
  /:
    get:
      summary: Health Check
      operationId: health_check__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckResponse'
components:
  schemas:
    HealthCheckResponse:
      properties:
        status:
          type: integer
          title: Status
      type: object
      required:
        - status
      title: HealthCheckResponse

````