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

# Health Check

> Basic health check endpoint.

Returns 200 if the service is running. Does not check
database connectivity or other dependencies.



## OpenAPI

````yaml get /health
openapi: 3.1.0
info:
  title: SnackBase
  description: Open-source Backend-as-a-Service (BaaS)
  version: 0.1.0
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - health
      summary: Health Check
      description: |-
        Basic health check endpoint.

        Returns 200 if the service is running. Does not check
        database connectivity or other dependencies.
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````