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

# Healthz

> Check the health of the container.



## OpenAPI

````yaml /openapi/privateai_4.3.0.json get /healthz
openapi: 3.1.0
info:
  title: API Reference
  description: Private AI API Reference
  termsOfService: https://www.getlimina.ai/en/terms-of-use
  contact:
    url: https://www.getlimina.ai/en/contact-us
    email: info@getlimina.ai
  version: 4.3.0
servers:
  - url: https://api.private-ai.com/community
    description: Private AI Community API
  - url: https://api.private-ai.com/cloud
    description: Private AI Cloud API
  - url: http://localhost:8080
    description: Local Server
security: []
paths:
  /healthz:
    get:
      summary: Healthz
      description: Check the health of the container.
      operationId: healthz_healthz_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthzResponse'
components:
  schemas:
    HealthzResponse:
      properties:
        success:
          type: boolean
          title: Success
          description: Whether the healthz request succeeded.
        gpu_inference_engine_success:
          type: boolean
          title: Gpu Inference Engine Success
          description: >-
            Whether the health check on the GPU inference engine succeeded.
            Returned on GPU container only.
      type: object
      required:
        - success
      title: HealthzResponse

````