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

# Readiness Check

> Readiness probe: verifies the API can reach its database.

Used for load-balancer target health. Splitting this from /health avoids
cascading outages where a transient DB blip drains every instance.



## OpenAPI

````yaml /openapi/powerpoint-api.json get /ready
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:
  /ready:
    get:
      tags:
        - health
      summary: Readiness Check
      description: |-
        Readiness probe: verifies the API can reach its database.

        Used for load-balancer target health. Splitting this from /health avoids
        cascading outages where a transient DB blip drains every instance.
      operationId: readiness_check_ready_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````