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

# Health Check Deep

> Deep health check that verifies the job queue, AI workflow state store, and database are all responsive within a bounded time budget. Used by container orchestrators as a liveness probe to distinguish "process alive and TCP listening" (what /health reports) from "application is actually serving requests" (this endpoint).



## OpenAPI

````yaml /openapi.json get /health/deep
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /health/deep:
    get:
      summary: Health Check Deep
      description: >-
        Deep health check that verifies the job queue, AI workflow state store,
        and database are all responsive within a bounded time budget. Used by
        container orchestrators as a liveness probe to distinguish "process
        alive and TCP listening" (what /health reports) from "application is
        actually serving requests" (this endpoint).
      operationId: health_check_deep_health_deep_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````