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

# Health Check

> Health check endpoint for monitoring services like Better Stack.

Checks:
- API server status
- Database connectivity
- Critical dependencies

Returns 200 if healthy, 503 if unhealthy.



## OpenAPI

````yaml https://api.getsolum.com/openapi.json get /health
openapi: 3.1.0
info:
  title: Solum Health API
  description: '## Solum Health Backend API '
  version: 1.0.0
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - Monitoring
      summary: Health Check
      description: |-
        Health check endpoint for monitoring services like Better Stack.

        Checks:
        - API server status
        - Database connectivity
        - Critical dependencies

        Returns 200 if healthy, 503 if unhealthy.
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````