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

# Detailed Health Check

> Detailed health check with additional system information



## OpenAPI

````yaml cloud-api/openapi.json get /api/v1/health/detailed
openapi: 3.1.0
info:
  title: Dev Kit for AI API
  description: 'API for Dev Kit for AI: Developer Toolkit for AI-Powered Web Applications'
  version: 1.6.1
servers:
  - url: https://api.devkit4ai.com
    description: Dev Kit for AI Production Server
  - url: https://api.vibecoding.ad
    description: Vibe Coding Production Server
security: []
paths:
  /api/v1/health/detailed:
    get:
      tags:
        - Health Check API
      summary: Detailed Health Check
      description: Detailed health check with additional system information
      operationId: detailed_health_check_api_v1_health_detailed_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DetailedHealthCheckResponse'
components:
  schemas:
    DetailedHealthCheckResponse:
      properties:
        status:
          type: string
          title: Status
        database:
          additionalProperties: true
          type: object
          title: Database
        file_storage:
          additionalProperties: true
          type: object
          title: File Storage
        redis:
          additionalProperties: true
          type: object
          title: Redis
        system:
          additionalProperties: true
          type: object
          title: System
        timestamp:
          type: string
          title: Timestamp
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
      type: object
      required:
        - status
        - database
        - file_storage
        - redis
        - system
        - timestamp
      title: DetailedHealthCheckResponse

````