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

# Health Check

> Liveness probe: 200 if the process is up. Cheap, no dependencies.



## OpenAPI

````yaml /openapi/powerpoint-api.json get /health
openapi: 3.1.0
info:
  title: SlideKit
  description: >-
    A comprehensive API for PowerPoint template management and presentation
    generation
  version: 1.0.0
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - health
      summary: Health Check
      description: 'Liveness probe: 200 if the process is up. Cheap, no dependencies.'
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````